Sha256: 073cfbe88f88c73faa720d1f3557582f7e55400e43e98f7b69e1d26108887a8c
Contents?: true
Size: 421 Bytes
Versions: 9
Compression:
Stored size: 421 Bytes
Contents
class CreateSignumSignals < ActiveRecord::Migration[6.0] def change create_table :signum_signals, id: :uuid do |t| t.string :state, default: 'pending' t.references :signalable, polymorphic: true, optional: false, null: false, type: :uuid t.string :kind, default: 'notice' t.boolean :sticky t.string :icon t.string :title t.text :text t.timestamps end end end
Version data entries
9 entries across 9 versions & 1 rubygems