Sha256: b5c6c19a4b228f6695ba0faeb9445226bc3ae980e8df2b822654fd549ccceb2c

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

# frozen_string_literal: true

require 'model'

class DeletedJob < Model
  belongs_to :source, polymorphic: true
  belongs_to :owner, polymorphic: true
  belongs_to :repository
  belongs_to :commit
  belongs_to :stage
  belongs_to :job_config, foreign_key: :config_id, class_name: 'JobConfig'
  self.primary_key = 'id'
  # has_many   :queueable_jobs
  # has_many   :job_versions
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
travis-backup-for-v3-0.1.0 lib/models/deleted_job.rb