20160424075215_create_kanjai_template_statics.rb 285 Bytes
class CreateKanjaiTemplateStatics < ActiveRecord::Migration
  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