1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-25 07:34:10 +02:00

removed unnecessary count

This commit is contained in:
Gani Georgiev
2025-01-17 15:58:57 +02:00
parent 0798b5ccbb
commit c70ca97888
3 changed files with 4 additions and 29 deletions

View File

@@ -269,7 +269,7 @@ func (r *MigrationsRunner) initMigrationsTable() error {
func (r *MigrationsRunner) isMigrationApplied(txApp App, file string) bool {
var exists bool
err := txApp.DB().Select("count(*)").
err := txApp.DB().Select("(1)").
From(r.tableName).
Where(dbx.HashExp{"file": file}).
Limit(1).