Sha256: 85540d548eb239e781bc50d11658c144ad0f9ed25d9e1f51d45a62b08c77f069
Contents?: true
Size: 403 Bytes
Versions: 98
Compression:
Stored size: 403 Bytes
Contents
class CreateVersions < ActiveRecord::Migration[4.2] def change create_table :versions do |t| t.string :item_type, null: false t.integer :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 :versions, [:item_type, :item_id] end end
Version data entries
98 entries across 98 versions & 1 rubygems