summaryrefslogtreecommitdiff
path: root/db/migrate/20171106132212_issues_confidential_not_null.rb
blob: 444a38c2dc53f7e60141e806fe8e4c8cbcb7dd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class IssuesConfidentialNotNull < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

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

  class Issue < ActiveRecord::Base
    self.table_name = 'issues'
  end

  def up
    Issue.where('confidential IS NULL').update_all(confidential: false)

    change_column_null :issues, :confidential, false
  end

  def down
    # There's no way / point to revert this.
  end
end