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

18 lines
341 B
Ruby

# -*- encoding : utf-8 -*-
class CreateBlockContents < ActiveRecord::Migration
def self.up
create_table :block_contents do |t|
t.integer :style
t.integer :nbr_columns
t.timestamps
end
ContentType.create(:slug => "BlockContent", :name => "Bloc")
end
def self.down
drop_table :block_contents
end
end