cours0708/P5B/ruby/mon_projet/db/migrate/003_create_customers.rb~
2008-11-25 22:11:16 +01:00

13 lines
229 B
Ruby

class CreateCustomers < ActiveRecord::Migration
def self.up
create_table :customers do |t|
t.column :firstname, :string
t.column :name, :string
end
end
def self.down
drop_table :customers
end
end