Sha256: ee075c5c0447655be9d18b0f661c80a89b3b30a71e7146d5503c9b83a7a0890f
Contents?: true
Size: 482 Bytes
Versions: 79
Compression:
Stored size: 482 Bytes
Contents
class CreateMedicationPrescriptionVersions < ActiveRecord::Migration[4.2] def change create_table :medication_prescription_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 :medication_prescription_versions, [:item_type, :item_id] end end
Version data entries
79 entries across 79 versions & 1 rubygems