slapid and player now links when registering

This commit is contained in:
2026-02-17 18:33:22 +11:00
parent 9362448f22
commit 42282d05b1
11 changed files with 137 additions and 28 deletions

View File

@@ -3,7 +3,6 @@ package db
import (
"context"
"database/sql"
"fmt"
"github.com/pkg/errors"
"github.com/uptrace/bun"
@@ -110,7 +109,6 @@ func (l *listgetter[T]) Filter(filters ...Filter) *listgetter[T] {
l.q = l.q.Where("? ? ?", bun.Ident(filter.Field), bun.Safe(filter.Comparator), filter.Value)
}
}
fmt.Println(l.q.String())
return l
}