Sha256: a68c03acadce5b54c58b7f6170d1f3878fd5b212e445d47cb1578b591cc1a5a2

Contents?: true

Size: 314 Bytes

Versions: 1

Compression:

Stored size: 314 Bytes

Contents

# frozen_string_literal: true

require 'model'

class Tag < Model
  belongs_to :last_build, foreign_key: :last_build_id, class_name: 'Build'
  belongs_to :repository
  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/tag.rb