debian-mirror-gitlab/db/migrate/20201021155606_add_analytics_access_level_to_project_features.rb
2021-02-22 17:27:13 +05:30

24 lines
649 B
Ruby

# 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