entc/gen: remove unnecessary sqlgraph.To step on HasE predicates (#3144)

Predicate that checks existence-only do not need the 'other' table
This commit is contained in:
Ariel Mashraki
2022-12-04 13:15:16 +02:00
committed by GitHub
parent 3f1d7c960e
commit 381483e45c
91 changed files with 2 additions and 202 deletions

View File

@@ -267,7 +267,6 @@ func HasOwner() predicate.Card {
return predicate.Card(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(OwnerTable, FieldID),
sqlgraph.Edge(sqlgraph.O2O, true, OwnerTable, OwnerColumn),
)
sqlgraph.HasNeighbors(s, step)

View File

@@ -265,7 +265,6 @@ func HasCard() predicate.User {
return predicate.User(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(CardTable, FieldID),
sqlgraph.Edge(sqlgraph.O2O, false, CardTable, CardColumn),
)
sqlgraph.HasNeighbors(s, step)