20160424075215_create_kanjai_template_statics.rb 290 Bytes
class CreateKanjaiTemplateStatics < ActiveRecord::Migration[5.2]
  def change
    create_table :kanjai_template_statics do |t|
      t.references :page_template
      t.string :marker
      t.string :marker_type
      t.string :marker_name

      t.timestamps null: false
    end
  end
end