updated deps; regen ent

This commit is contained in:
2023-11-20 16:18:03 +01:00
parent 552382cc00
commit 0c6a96db21
5 changed files with 44 additions and 23 deletions

View File

@@ -94,6 +94,14 @@ func (dpu *DBPackageUpdate) SetRepository(d dbpackage.Repository) *DBPackageUpda
return dpu
}
// SetNillableRepository sets the "repository" field if the given value is not nil.
func (dpu *DBPackageUpdate) SetNillableRepository(d *dbpackage.Repository) *DBPackageUpdate {
if d != nil {
dpu.SetRepository(*d)
}
return dpu
}
// SetVersion sets the "version" field.
func (dpu *DBPackageUpdate) SetVersion(s string) *DBPackageUpdate {
dpu.mutation.SetVersion(s)
@@ -695,6 +703,14 @@ func (dpuo *DBPackageUpdateOne) SetRepository(d dbpackage.Repository) *DBPackage
return dpuo
}
// SetNillableRepository sets the "repository" field if the given value is not nil.
func (dpuo *DBPackageUpdateOne) SetNillableRepository(d *dbpackage.Repository) *DBPackageUpdateOne {
if d != nil {
dpuo.SetRepository(*d)
}
return dpuo
}
// SetVersion sets the "version" field.
func (dpuo *DBPackageUpdateOne) SetVersion(s string) *DBPackageUpdateOne {
dpuo.mutation.SetVersion(s)