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

20150425173433_add_default_snippet_visibility_to_app_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd13def4176f5653e97006eb5ce42eacf4f295ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class AddDefaultSnippetVisibilityToAppSettings < ActiveRecord::Migration
  def up
    add_column :application_settings, :default_snippet_visibility, :integer
    visibility = Settings.gitlab.default_projects_features['visibility_level']
    execute("update application_settings set default_snippet_visibility = #{visibility}")
  end

  def down
    remove_column :application_settings, :default_snippet_visibility
  end
end