16 lines
429 B
Ruby
16 lines
429 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Database
|
||
|
class PostgresForeignKey < ApplicationRecord
|
||
|
self.primary_key = :oid
|
||
|
|
||
|
scope :by_referenced_table_identifier, ->(identifier) do
|
||
|
raise ArgumentError, "Referenced table name is not fully qualified with a schema: #{identifier}" unless identifier =~ /^\w+\.\w+$/
|
||
|
|
||
|
where(referenced_table_identifier: identifier)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|