Update the field name of registry model

Update the field name of registry mode

Signed-off-by: Wenkai Yin <yinw@vmware.com>
This commit is contained in:
Wenkai Yin 2021-05-18 17:26:20 +08:00
parent 1a3335edc5
commit 315f490d3c
3 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ func (d *daoTestSuite) SetupTest() {
Name: "harbor", Name: "harbor",
Type: "harbor", Type: "harbor",
Insecure: false, Insecure: false,
Health: "health", Status: "health",
} }
id, err := d.dao.Create(d.ctx, registry) id, err := d.dao.Create(d.ctx, registry)
d.Require().Nil(err) d.Require().Nil(err)

View File

@ -34,7 +34,7 @@ type Registry struct {
Type string `orm:"column(type)"` Type string `orm:"column(type)"`
Insecure bool `orm:"column(insecure)"` Insecure bool `orm:"column(insecure)"`
Description string `orm:"column(description)"` Description string `orm:"column(description)"`
Health string `orm:"column(health)"` Status string `orm:"column(health)"`
CreationTime time.Time `orm:"column(creation_time);auto_now_add"` CreationTime time.Time `orm:"column(creation_time);auto_now_add"`
UpdateTime time.Time `orm:"column(update_time);auto_now"` UpdateTime time.Time `orm:"column(update_time);auto_now"`
} }

View File

@ -226,7 +226,7 @@ func fromDaoModel(registry *dao.Registry) (*model.Registry, error) {
Credential: &model.Credential{}, Credential: &model.Credential{},
URL: registry.URL, URL: registry.URL,
Insecure: registry.Insecure, Insecure: registry.Insecure,
Status: registry.Health, Status: registry.Status,
CreationTime: registry.CreationTime, CreationTime: registry.CreationTime,
UpdateTime: registry.UpdateTime, UpdateTime: registry.UpdateTime,
} }
@ -260,7 +260,7 @@ func toDaoModel(registry *model.Registry) (*dao.Registry, error) {
Type: string(registry.Type), Type: string(registry.Type),
Insecure: registry.Insecure, Insecure: registry.Insecure,
Description: registry.Description, Description: registry.Description,
Health: registry.Status, Status: registry.Status,
CreationTime: registry.CreationTime, CreationTime: registry.CreationTime,
UpdateTime: registry.UpdateTime, UpdateTime: registry.UpdateTime,
} }