class CreateAlertRules < ActiveRecord::Migration[6.0]
  def change
    create_table :alert_rules do |t|
      t.string :alert_on
      t.string :condition
      t.string :value
      t.integer :alert_id

      t.timestamps
    end
  end
end
