2018-12-23 12:14:25 +05:30
|
|
|
class AddProtectedToCiVariables < ActiveRecord::Migration[4.2]
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|