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