Sha256: a02daa1f733fcb0af5477da0a06d4cab2295ab7c57ae9b60fd24e145cea264dd
Contents?: true
Size: 461 Bytes
Versions: 39
Compression:
Stored size: 461 Bytes
Contents
class CreatePandaCmsBlockContentVersions < ActiveRecord::Migration[7.1] def change create_table :panda_cms_block_content_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 :panda_cms_block_content_versions, %i[item_type item_id] end end
Version data entries
39 entries across 39 versions & 1 rubygems