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

20 lines
365 B
Ruby

# -*- encoding : utf-8 -*-
class CreateHomeBlocks < ActiveRecord::Migration
def self.up
create_table :home_blocks do |t|
t.string :title
t.string :description
t.integer :cible_id
t.string :cible_type
t.string :slug
t.references :home
t.timestamps
end
end
def self.down
drop_table :home_blocks
end
end