20151229105917_create_kanjai_page_data.rb 233 Bytes
class CreateKanjaiPageData < ActiveRecord::Migration
  def change
    create_table :kanjai_page_data do |t|
      t.string :title
      t.string :url

      t.text   :template_content
      t.timestamps null: false
    end
  end
end