mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-16 23:35:20 +01:00
39 lines
1.6 KiB
Go
39 lines
1.6 KiB
Go
/*
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// RepoRecord holds the record of an repository in DB, all the infors are from the registry notification event.
|
|
type RepoRecord struct {
|
|
RepositoryID string `orm:"column(repository_id);pk" json:"repository_id"`
|
|
Name string `orm:"column(name)" json:"name"`
|
|
OwnerName string `orm:"-"`
|
|
OwnerID int64 `orm:"column(owner_id)" json:"owner_id"`
|
|
ProjectName string `orm:"-"`
|
|
ProjectID int64 `orm:"column(project_id)" json:"project_id"`
|
|
Description string `orm:"column(description)" json:"description"`
|
|
PullCount int64 `orm:"column(pull_count)" json:"pull_count"`
|
|
StarCount int64 `orm:"column(star_count)" json:"star_count"`
|
|
CreationTime time.Time `orm:"column(creation_time);auto_now_add" json:"creation_time"`
|
|
UpdateTime time.Time `orm:"column(update_time);auto_now" json:"update_time"`
|
|
}
|
|
|
|
//TableName is required by by beego orm to map RepoRecord to table repository
|
|
func (rp *RepoRecord) TableName() string {
|
|
return "repository"
|
|
}
|