wiseflow/client/pb/pb_migrations/1713329959_updated_sites.js
2024-04-17 14:02:25 +08:00

28 lines
649 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("sma08jpi5rkoxnh")
// add
collection.schema.addField(new SchemaField({
"system": false,
"id": "8x8n2a47",
"name": "activated",
"type": "bool",
"required": false,
"presentable": false,
"unique": false,
"options": {}
}))
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("sma08jpi5rkoxnh")
// remove
collection.schema.removeField("8x8n2a47")
return dao.saveCollection(collection)
})