class CreateEditableContents < ActiveRecord::Migration[8.0] def change create_table :editable_contents do |t| t.string :context t.string :key t.string :lang, default: "en" t.text :content t.boolean :rich_text, default: false t.timestamps end end end