crossey_app/db/migrate/20100425180812_create_entreprises.rb
2013-09-30 17:42:55 +02:00

14 lines
212 B
Ruby

class CreateEntreprises < ActiveRecord::Migration
def self.up
create_table :entreprises do |t|
t.string :email
t.timestamps
end
end
def self.down
drop_table :entreprises
end
end