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

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

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

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

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

  def up
    with_lock_retries do
      add_column :project_features, :analytics_access_level, :integer, default: 20, null: false
    end
  end

  def down
    with_lock_retries do
      remove_column :project_features, :analytics_access_level, :integer
    end
  end
end