Sha256: 71a317889c7106b1325f8951f1ae3a287fdd2ae5cc7119ae72b3e5f5da28e57d
Contents?: true
Size: 484 Bytes
Versions: 98
Compression:
Stored size: 484 Bytes
Contents
class CreateClinicVersions < ActiveRecord::Migration[5.0] def change create_table :clinic_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 :clinic_versions, [:item_type, :item_id], name: "clinic_versions_type_id" end end
Version data entries
98 entries across 98 versions & 1 rubygems