summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190618171120_update_geo_nodes_primary.rb
blob: dc9cfbda177596b28af9c73b8f94ec2c7dca65a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class UpdateGeoNodesPrimary < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    change_column_default(:geo_nodes, :primary, false)
    change_column_null(:geo_nodes, :primary, false, false)
  end

  def down
    change_column_default(:geo_nodes, :primary, nil)
    change_column_null(:geo_nodes, :primary, true)
  end
end