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

20180423204600_add_pages_access_level_to_project_feature.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d2f8cf9c7681d8b06cc138b542a1a3eb42c747f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class AddPagesAccessLevelToProjectFeature < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

  DOWNTIME = false

  def up
    add_column_with_default(:project_features, :pages_access_level, :integer, default: ProjectFeature::PUBLIC, allow_null: false)

    change_column_default(:project_features, :pages_access_level, ProjectFeature::ENABLED)
  end

  def down
    remove_column :project_features, :pages_access_level
  end
end