13 lines
268 B
Ruby
13 lines
268 B
Ruby
|
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
|