summaryrefslogtreecommitdiff
path: root/db/migrate/20170622135628_add_environment_scope_to_ci_variables.rb
blob: 8fbb2ab57d5c09704f26f10072be4841d7f3c84b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddEnvironmentScopeToCiVariables < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:ci_variables, :environment_scope, :string, default: '*')
  end

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