debian-mirror-gitlab/db/migrate/20131112114325_create_broadcast_messages.rb
2017-08-17 22:00:37 +05:30

16 lines
321 B
Ruby

# 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