mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 13:02:25 -05:00
[chore] Update a bunch of database dependencies (#1772)
* [chore] Update a bunch of database dependencies * fix lil thing
This commit is contained in:
parent
66df974143
commit
ec325fee14
402 changed files with 35068 additions and 35401 deletions
8
vendor/github.com/uptrace/bun/schema/table.go
generated
vendored
8
vendor/github.com/uptrace/bun/schema/table.go
generated
vendored
|
|
@ -534,7 +534,7 @@ func (t *Table) belongsToRelation(field *Field) *Relation {
|
|||
} else {
|
||||
panic(fmt.Errorf(
|
||||
"bun: %s belongs-to %s: %s must have column %s",
|
||||
t.TypeName, field.GoName, t.TypeName, baseColumn,
|
||||
t.TypeName, field.GoName, joinTable.TypeName, joinColumn,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
@ -588,7 +588,7 @@ func (t *Table) hasOneRelation(field *Field) *Relation {
|
|||
} else {
|
||||
panic(fmt.Errorf(
|
||||
"bun: %s has-one %s: %s must have column %s",
|
||||
field.GoName, t.TypeName, joinTable.TypeName, baseColumn,
|
||||
field.GoName, t.TypeName, t.TypeName, baseColumn,
|
||||
))
|
||||
}
|
||||
|
||||
|
|
@ -598,7 +598,7 @@ func (t *Table) hasOneRelation(field *Field) *Relation {
|
|||
} else {
|
||||
panic(fmt.Errorf(
|
||||
"bun: %s has-one %s: %s must have column %s",
|
||||
field.GoName, t.TypeName, joinTable.TypeName, baseColumn,
|
||||
field.GoName, t.TypeName, joinTable.TypeName, joinColumn,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
@ -677,7 +677,7 @@ func (t *Table) hasManyRelation(field *Field) *Relation {
|
|||
} else {
|
||||
panic(fmt.Errorf(
|
||||
"bun: %s has-many %s: %s must have column %s",
|
||||
t.TypeName, field.GoName, t.TypeName, baseColumn,
|
||||
t.TypeName, field.GoName, joinTable.TypeName, joinColumn,
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue