Sha256: bd3f58e12ab52d7f2594d923d6a25398c04db0fa96dd7ae5124bb2fc7d0fca80

Contents?: true

Size: 258 Bytes

Versions: 1

Compression:

Stored size: 258 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

  self.table_name = 'tags'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
travis-backup-0.3.0 lib/models/tag.rb