20151221203345_create_kanjai_page_contents.rb 322 Bytes
class CreateKanjaiPageContents < ActiveRecord::Migration
  def change
    create_table :kanjai_page_contents do |t|
      t.references  :page
      t.integer     :structure_id
      t.text        :markdown
      t.text        :markdown_html
      t.text        :text_html

      t.timestamps null: false
    end
  end
end