Sha256: b0abe29253367032f4f201cc1c50b8fc6f5ff5135a0a1d849aae7a6c3de4b315
Contents?: true
Size: 429 Bytes
Versions: 98
Compression:
Stored size: 429 Bytes
Contents
class CreateClinicalVersions < ActiveRecord::Migration[4.2] def change create_table :clinical_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 :clinical_versions, [:item_type, :item_id] end end
Version data entries
98 entries across 98 versions & 1 rubygems