Sha256: 24440f04a4a6571d07346d06f5eb858594837224aa56818000e328b49bf432b2

Contents?: true

Size: 376 Bytes

Versions: 1

Compression:

Stored size: 376 Bytes

Contents

# frozen_string_literal: true

require 'model'

class DeletedCommit < Model
  belongs_to :related_branch, foreign_key: :branch_id, class_name: 'Branch'
  belongs_to :repository
  belongs_to :tag
  self.primary_key = 'id'
  # has_many :builds
  # has_many :jobs
  # has_many :requests

  # has_many :deleted_builds
  # has_many :deleted_jobs
  # has_many :deleted_requests
end

Version data entries

1 entries across 1 versions & 1 rubygems

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