forked from Trustie/forgeplus
25 lines
677 B
Ruby
25 lines
677 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: ob_repository_sync_jobs
|
|
#
|
|
# id :integer not null, primary key
|
|
# ob_repository_sync_id :integer
|
|
# github_branch :string(255)
|
|
# gitee_branch :string(255)
|
|
# gitlink_branch :string(255)
|
|
# job_type :string(255)
|
|
# base :string(255)
|
|
# job_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_ob_repository_sync_jobs_on_ob_repository_sync_id (ob_repository_sync_id)
|
|
#
|
|
|
|
class ObRepositorySyncJob < ApplicationRecord
|
|
belongs_to :ob_repository_sync
|
|
|
|
end
|