Sha256: f47f67d0e50cb5c63258b8ea959765b95df7e7582ba6ff0a625577497bbee129

Contents?: true

Size: 876 Bytes

Versions: 14

Compression:

Stored size: 876 Bytes

Contents

# This migration comes from action_text (originally 20180528164100)
class CreateActionTextTables < ActiveRecord::Migration[7.2]
  def change
    create_table :action_text_rich_texts, id: :uuid do |t|
      t.string :name, null: false
      t.text :body, limit: 16.megabytes - 1
      t.references :record, null: false, polymorphic: true, index: false, type: :uuid
      t.timestamps
      t.index [:record_type, :record_id, :name], name: "index_action_text_rich_texts_uniqueness", unique: true
    end

    create_table :action_text_rich_text_versions, id: :uuid do |t|
      t.string :item_type, null: false
      t.string :item_id, null: false
      t.string :event, null: false
      t.string :whodunnit
      t.jsonb :object
      t.jsonb :object_changes
      t.datetime :created_at
    end

    add_index :action_text_rich_text_versions, %i[item_type item_id]
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
panda-cms-0.7.3 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda-cms-0.7.2 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda-cms-0.7.0 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.6.3 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.6.2 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.6.1 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.6.0 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.10 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.9 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.8 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.7 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.6 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.5 db/migrate/20240904200605_create_action_text_tables.action_text.rb
panda_cms-0.5.4 db/migrate/20240904200605_create_action_text_tables.action_text.rb