20230828064344_create_kanjai_page_content_attributes.rb 265 Bytes
class CreateKanjaiPageContentAttributes < ActiveRecord::Migration[5.2]
  def change
    create_table :kanjai_page_content_attributes do |t|
      t.references  :page_content
      t.string      :name
      t.string      :value

      t.timestamps
    end
  end
end