debian-mirror-gitlab/db/migrate/20210301150451_add_tier_to_environments.rb
2021-04-17 20:07:23 +05:30

20 lines
349 B
Ruby

# frozen_string_literal: true
class AddTierToEnvironments < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
add_column :environments, :tier, :smallint
end
end
def down
with_lock_retries do
remove_column :environments, :tier
end
end
end