blog_perso_app/db/migrate/0065_create_blocks.rb
Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

20 lines
325 B
Ruby

# -*- encoding : utf-8 -*-
class CreateBlocks < ActiveRecord::Migration
def self.up
create_table :blocks do |t|
t.string :block_name
t.string :blockable_type
t.integer :blockable_id
t.text :content
t.timestamps
end
end
def self.down
drop_table :blocks
end
end