Sha256: 508792a08804752d28a21000fb2f3354fd25451f5ad6e244713ec598dcf4472a
Contents?: true
Size: 466 Bytes
Versions: 7
Compression:
Stored size: 466 Bytes
Contents
class CreateEventTypeAlertTriggers < ActiveRecord::Migration[5.2] def change within_renalware_schema do create_table( :event_type_alert_triggers, comment: "Matching alerts are displayed on patient pages" ) do |t| t.references :event_type, foreign_key: true, null: false t.text :when_event_document_contains t.text :when_event_description_contains t.timestamps null: false end end end end
Version data entries
7 entries across 7 versions & 1 rubygems