class CreateKanjaiPageContents < ActiveRecord::Migration[5.2]
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