negos_app/db/migrate/20151118213358_add_account_validated_to_customers.rb
2016-02-16 21:09:48 +01:00

7 lines
202 B
Ruby
Executable File

class AddAccountValidatedToCustomers < ActiveRecord::Migration
def change
add_column :customers, :account_validated, :boolean
add_column :customers, :account_validated_at, :datetime
end
end