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

20171124132536_make_merge_request_statuses_not_null.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49b693c5950765984672dd5fd4b081962457265d (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[4.2]
  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