ual_app/db/migrate/20110418153215_create_block_contents.rb
2014-08-24 00:18:02 +02:00

17 lines
278 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
end
def self.down
drop_table :block_contents
end
end