mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-12-01 11:01:04 +02:00
21 lines
459 B
Go
21 lines
459 B
Go
|
package migrations
|
||
|
|
||
|
import (
|
||
|
"github.com/pocketbase/dbx"
|
||
|
)
|
||
|
|
||
|
// Cleanup dangling deleted collections references
|
||
|
// (see https://github.com/pocketbase/pocketbase/discussions/2570).
|
||
|
func init() {
|
||
|
AppMigrations.Register(func(db dbx.Builder) error {
|
||
|
_, err := db.NewQuery(`
|
||
|
DELETE FROM {{_externalAuths}}
|
||
|
WHERE [[collectionId]] NOT IN (SELECT [[id]] FROM {{_collections}})
|
||
|
`).Execute()
|
||
|
|
||
|
return err
|
||
|
}, func(db dbx.Builder) error {
|
||
|
return nil
|
||
|
})
|
||
|
}
|