class CreateAlerts < ActiveRecord::Migration[6.0]
  def change
    create_table :alerts do |t|
      t.string :name
      t.text :message
      t.string :category
      t.string :severity_color
      t.integer :organisation_id

      t.timestamps
    end
  end
end
