gitlab-ce/lib/gitlab/database/async_constraints/postgres_async_constraint_v...

36 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Gitlab
module Database
module AsyncConstraints
class PostgresAsyncConstraintValidation < SharedModel
include QueueErrorHandlingConcern
self.table_name = 'postgres_async_foreign_key_validations'
MAX_IDENTIFIER_LENGTH = Gitlab::Database::MigrationHelpers::MAX_IDENTIFIER_NAME_LENGTH
MAX_LAST_ERROR_LENGTH = 10_000
validates :name, presence: true, uniqueness: { scope: :table_name }, length: { maximum: MAX_IDENTIFIER_LENGTH }
validates :table_name, presence: true, length: { maximum: MAX_IDENTIFIER_LENGTH }
enum constraint_type: { foreign_key: 0, check_constraint: 1 }
scope :ordered, -> { order(attempts: :asc, id: :asc) }
scope :foreign_key_type, -> { constraint_type_exists? ? foreign_key : all }
scope :check_constraint_type, -> { check_constraint }
class << self
def table_available?
connection.table_exists?(table_name)
end
def constraint_type_exists?
connection.column_exists?(table_name, :constraint_type)
end
end
end
end
end
end