Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20131112114325_create_broadcast_messages.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 147178e9dcf2dc7d490f82507aa6fe144f449cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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