debian-mirror-gitlab/app/models/project_pages_metadatum.rb
2020-11-24 15:15:51 +05:30

10 lines
281 B
Ruby

# frozen_string_literal: true
class ProjectPagesMetadatum < ApplicationRecord
self.primary_key = :project_id
belongs_to :project, inverse_of: :pages_metadatum
belongs_to :artifacts_archive, class_name: 'Ci::JobArtifact'
scope :deployed, -> { where(deployed: true) }
end