summaryrefslogtreecommitdiff
path: root/db/migrate/20131112114325_create_broadcast_messages.rb
blob: ad2549e53afe88410837b3217fd2d3b417317f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rubocop:disable all
class CreateBroadcastMessages < ActiveRecord::Migration
  DOWNTIME = false

  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 null: true
    end
  end
end