14 lines
212 B
Ruby
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
|