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

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

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

  def change
    change_column_null :merge_requests, :state, false
    change_column_null :merge_requests, :merge_status, false
  end
end