debian-mirror-gitlab/db/migrate/20131112114325_create_broadcast_messages.rb
2016-06-16 23:09:34 +05:30

14 lines
290 B
Ruby

# 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