8 lines
258 B
Ruby
8 lines
258 B
Ruby
class AddUnlimitedToPCustomers < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :p_customers, :unlimited, :boolean, :default => false
|
|
add_column :p_customers, :import_name, :string
|
|
add_column :p_customers, :import_date, :datetime
|
|
end
|
|
end
|