BigW Consortium Gitlab

20131112114325_create_broadcast_messages.rb 290 Bytes
# rubocop:disable all
class CreateBroadcastMessages < ActiveRecord::Migration
  def change
    create_table :broadcast_messages do |t|
      t.text :message, null: false
      t.datetime :starts_at
      t.datetime :ends_at
      t.integer :alert_type

      t.timestamps
    end
  end
end