/// migrate((db) => { const dao = new Dao(db) const collection = dao.findCollectionByNameOrId("_pb_users_auth_") // add collection.schema.addField(new SchemaField({ "system": false, "id": "rncq13xn", "name": "appearance_mode", "type": "select", "required": false, "presentable": false, "unique": false, "options": { "maxSelect": 1, "values": [ "light", "dark" ] } })) return dao.saveCollection(collection) }, (db) => { const dao = new Dao(db) const collection = dao.findCollectionByNameOrId("_pb_users_auth_") // remove collection.schema.removeField("rncq13xn") return dao.saveCollection(collection) })