silvester-23/pb_migrations/1699787392_updated_invites.js

45 lines
952 B
JavaScript
Raw Normal View History

2023-11-12 17:33:15 +01:00
/// <reference path="../pb_data/types.d.ts" />
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("zfbbb4gbdk9dh6k")
// update
collection.schema.addField(new SchemaField({
"system": false,
"id": "oexf4zse",
"name": "name",
"type": "text",
"required": true,
"presentable": false,
"unique": false,
"options": {
"min": null,
"max": null,
"pattern": ""
}
}))
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("zfbbb4gbdk9dh6k")
// update
collection.schema.addField(new SchemaField({
"system": false,
"id": "oexf4zse",
"name": "name",
"type": "text",
"required": false,
"presentable": false,
"unique": false,
"options": {
"min": null,
"max": null,
"pattern": ""
}
}))
return dao.saveCollection(collection)
})