accescible_app/db/migrate/20110418153215_create_block_contents.rb
Nicolas Bally d4484275e8 initial
2011-06-25 12:08:06 +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