Sha256: f52131db40c385feaea3c85c921f40d2b542559d7a913c21c1e77e439a09ac26
Contents?: true
Size: 693 Bytes
Versions: 21
Compression:
Stored size: 693 Bytes
Contents
class CreateHDTransmissionLog < ActiveRecord::Migration[5.1] def change create_table "renalware.hd_transmission_logs" do |t| t.references :parent, index: true t.string :direction, null: false, index: true t.string :format, null: false, index: true t.string :status, index: true t.references :hd_provider_unit, foreign_key: true, index: true t.references :patient, foreign_key: true, index: true t.string :filepath t.text :payload t.jsonb :result, index: { using: :gin }, default: {} t.text :error_messages, array: true, default: [] t.datetime :transmitted_at, index: true t.timestamps null: false end end end
Version data entries
21 entries across 21 versions & 1 rubygems