16 lines
377 B
Ruby
16 lines
377 B
Ruby
|
class CreateCustomers < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
db_name = ActiveRecord::Base::connection.current_database()
|
||
|
execute "ALTER DATABASE #{db_name} CHARACTER SET utf8 COLLATE utf8_general_ci"
|
||
|
|
||
|
create_table :customers do |t|
|
||
|
t.column :firstname, :string
|
||
|
t.column :name, :string
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :customers
|
||
|
end
|
||
|
end
|