Sha256: 005b9a542ced08d2d3f7af308652abda30b51f7dade481e34e027c3cc98dd178
Contents?: true
Size: 438 Bytes
Versions: 79
Compression:
Stored size: 438 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
79 entries across 79 versions & 1 rubygems