mirror of
https://github.com/goharbor/harbor
synced 2025-04-16 14:19:01 +00:00

* bump beego upgrade beego version from v1.10.12 to v2.0.5 1, beego v2 vserver/web refactor 2, beego v2 context refactor 3, beego v2 session refactor 4, beego v2 cache refactor 5, beego v2 orm refactor Signed-off-by: MinerYang <yminer@vmware.com>
52 lines
2.0 KiB
Go
52 lines
2.0 KiB
Go
// Copyright Project Harbor Authors
|
|
//
|
|
// 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 model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/beego/beego/v2/client/orm"
|
|
)
|
|
|
|
func init() {
|
|
orm.RegisterModel(new(Policy))
|
|
}
|
|
|
|
// Policy is the model for replication policy
|
|
type Policy struct {
|
|
ID int64 `orm:"pk;auto;column(id)"`
|
|
Name string `orm:"column(name)"`
|
|
Description string `orm:"column(description)"`
|
|
Creator string `orm:"column(creator)"`
|
|
SrcRegistryID int64 `orm:"column(src_registry_id)"`
|
|
DestRegistryID int64 `orm:"column(dest_registry_id)"`
|
|
DestNamespace string `orm:"column(dest_namespace)"`
|
|
DestNamespaceReplaceCount int8 `orm:"column(dest_namespace_replace_count)"`
|
|
Override bool `orm:"column(override)"`
|
|
Enabled bool `orm:"column(enabled)"`
|
|
Trigger string `orm:"column(trigger)"`
|
|
Filters string `orm:"column(filters)"`
|
|
ReplicateDeletion bool `orm:"column(replicate_deletion)"`
|
|
CreationTime time.Time `orm:"column(creation_time);auto_now_add" sort:"default:desc"`
|
|
UpdateTime time.Time `orm:"column(update_time);auto_now"`
|
|
Speed int32 `orm:"column(speed_kb)"`
|
|
CopyByChunk bool `orm:"column(copy_by_chunk)"`
|
|
}
|
|
|
|
// TableName set table name for ORM
|
|
func (p *Policy) TableName() string {
|
|
return "replication_policy"
|
|
}
|