mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProjectPagesMetadatum < ApplicationRecord
|
|
extend SuppressCompositePrimaryKeyWarning
|
|
|
|
include EachBatch
|
|
|
|
self.primary_key = :project_id
|
|
|
|
belongs_to :project, inverse_of: :pages_metadatum
|
|
belongs_to :pages_deployment
|
|
end
|