2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2013-11-12 06:47:28 -05:00
|
|
|
class CreateBroadcastMessages < ActiveRecord::Migration
|
2016-11-30 10:15:02 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2013-11-12 06:47:28 -05:00
|
|
|
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
|
|
|
|
|
2016-11-28 10:45:08 -05:00
|
|
|
t.timestamps null: true
|
2013-11-12 06:47:28 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|