7 lines
202 B
Ruby
Executable File
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
|