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("1mns8mlal6uf9ku") if err != nil { return err } // update collection data if err := json.Unmarshal([]byte(`{ "listRule": "trail.author.user = @request.auth.id || actor.user = @request.auth.id", "viewRule": "trail.author.user = @request.auth.id || actor.user = @request.auth.id" }`), &collection); err != nil { return err } // remove field collection.Fields.RemoveById("yyzimwee") return app.Save(collection) }, func(app core.App) error { collection, err := app.FindCollectionByNameOrId("1mns8mlal6uf9ku") if err != nil { return err } // update collection data if err := json.Unmarshal([]byte(`{ "listRule": "trail.author.user = @request.auth.id || user = @request.auth.id", "viewRule": "trail.author.user = @request.auth.id || user = @request.auth.id" }`), &collection); err != nil { return err } // add field if err := collection.Fields.AddMarshaledJSONAt(3, []byte(`{ "cascadeDelete": true, "collectionId": "_pb_users_auth_", "hidden": false, "id": "yyzimwee", "maxSelect": 1, "minSelect": 0, "name": "user", "presentable": false, "required": true, "system": false, "type": "relation" }`)); err != nil { return err } return app.Save(collection) }) }