maisonarbre_app/db/migrate/20110430085120_create_homes.rb
Nicolas Bally 1fa250e0e4 Initial
2011-07-15 12:29:09 +02:00

18 lines
316 B
Ruby

# -*- encoding : utf-8 -*-
class CreateHomes < ActiveRecord::Migration
def self.up
create_table :homes do |t|
t.string :slug
t.integer :promotion_1_id
t.integer :promotion_2_id
t.integer :promotion_3_id
t.timestamps
end
end
def self.down
drop_table :homes
end
end