package migrations import ( "encoding/json" "github.com/pocketbase/pocketbase/core" m "github.com/pocketbase/pocketbase/migrations" ) func init() { m.Register(func(app core.App) error { collection, err := app.FindCollectionByNameOrId("pbc_72164123") if err != nil { return err } // update collection data if err := json.Unmarshal([]byte(`{ "listRule": "actor.user = @request.auth.id" }`), &collection); err != nil { return err } return app.Save(collection) }, func(app core.App) error { collection, err := app.FindCollectionByNameOrId("pbc_72164123") if err != nil { return err } // update collection data if err := json.Unmarshal([]byte(`{ "listRule": null }`), &collection); err != nil { return err } return app.Save(collection) }) }