gitlab-org--gitlab-foss/db/migrate/20210830140524_add_state_to...

22 lines
449 B
Ruby

# frozen_string_literal: true
class AddStateToMember < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
def up
unless column_exists?(:members, :state)
with_lock_retries do
add_column :members, :state, :integer, limit: 2, default: 0
end
end
end
def down
if column_exists?(:members, :state)
with_lock_retries do
remove_column :members, :state
end
end
end
end