package migrations import ( "github.com/pocketbase/pocketbase/core" m "github.com/pocketbase/pocketbase/migrations" ) func init() { m.Register(func(app core.App) error { collection, err := app.FindCollectionByNameOrId("e864strfxo14pm4") if err != nil { return err } // add field if err := collection.Fields.AddMarshaledJSONAt(22, []byte(`{ "exceptDomains": [], "hidden": false, "id": "url1760183548", "name": "iri", "onlyDomains": [], "presentable": false, "required": false, "system": false, "type": "url" }`)); err != nil { return err } return app.Save(collection) }, func(app core.App) error { collection, err := app.FindCollectionByNameOrId("e864strfxo14pm4") if err != nil { return err } // remove field collection.Fields.RemoveById("url1760183548") return app.Save(collection) }) }