20151221203345_create_kanjai_page_contents.rb 322 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 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