summaryrefslogtreecommitdiff
path: root/db/migrate/20170809134534_add_broadcast_message_not_null_constraints.rb
blob: 13e8ef52f221b219a21a19e079a58dee8ff03744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddBroadcastMessageNotNullConstraints < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  COLUMNS = %i[starts_at ends_at created_at updated_at message_html]

  def change
    COLUMNS.each do |column|
      change_column_null :broadcast_messages, column, false
    end
  end
end