Sha256: e26e10f0142511c6281a6388ff4f76e64a2a664f159db24e45696b7347d86a88
Contents?: true
Size: 472 Bytes
Versions: 60
Compression:
Stored size: 472 Bytes
Contents
class CreateUKRDCTransmissionLogs < ActiveRecord::Migration[5.1] def change create_table :ukrdc_transmission_logs do |t| t.references :patient, foreign_key: true, index: true, null: false t.datetime :sent_at, null: false t.integer :status, null: false t.uuid :request_uuid, null: false, index: true t.text :payload_hash t.xml :payload t.text :error t.string :file_path t.timestamps null: false end end end
Version data entries
60 entries across 60 versions & 1 rubygems