boissier_app/db/migrate/20110430085120_create_homes.rb
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +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