cours0708/P5B/ruby/mon_projet/db/migrate/002_create_suppliers.rb

19 lines
487 B
Ruby
Raw Normal View History

2008-11-25 21:11:16 +00:00
class CreateSuppliers < 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 :suppliers do |t|
t.column :name, :string
t.column :description, :text
t.column :code, :string
t.column :created_at, :datetime
t.column :updated_at, :datetime
end
end
def self.down
drop_table :suppliers
end
end