class CreateContents < ActiveRecord::Migration def self.up create_table :contents do |t| t.string :title t.text :abstract t.string :menu_title t.string :sub_title t.text :body t.string :type # Single Table Inheritance t.integer :approved, :null => false, :default => 0 t.references :user t.timestamps end end def self.down drop_table :contents end end