Sha256: 8b54e10124ef02fd1d8a2b3fea626bee583a01d4e8a5f5a4ef8184de2fd403ce

Contents?: true

Size: 359 Bytes

Versions: 1

Compression:

Stored size: 359 Bytes

Contents

# frozen_string_literal: true

require 'model'

class DeletedTag < Model
  belongs_to :last_build, foreign_key: :last_build_id, class_name: 'Build'
  belongs_to :repository
  self.primary_key = 'id'
  # has_many :builds
  # has_many :commits
  # has_many :requests
  # has_many :deleted_builds
  # has_many :deleted_commits
  # 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_tag.rb