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

20200224163804_add_version_to_feature_flags_table.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf3179f070cf0459fcc413f39523e8955d410f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class AddVersionToFeatureFlagsTable < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  FEATURE_FLAG_LEGACY_VERSION = 1

  def up
    # The operations_feature_flags table is small enough that we can disable this cop.
    # See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/25552#note_291202882
    add_column_with_default(:operations_feature_flags, :version, :smallint, default: FEATURE_FLAG_LEGACY_VERSION, allow_null: false)
  end

  def down
    remove_column(:operations_feature_flags, :version)
  end
end