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

20170524161101_add_protected_to_ci_variables.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6125ea5d5a82c48788c22b99bf257fac294d8c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddProtectedToCiVariables < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:ci_variables, :protected, :boolean, default: false)
  end

  def down
    remove_column(:ci_variables, :protected)
  end
end