This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/pb/pb_migrations/1731214250_updated_photos.js
2025-11-13 23:45:26 +13:00

32 lines
705 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("my9ej2vdwzwoqov")
// add
collection.schema.addField(new SchemaField({
"system": false,
"id": "x9ytobkp",
"name": "alt",
"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("my9ej2vdwzwoqov")
// remove
collection.schema.removeField("x9ytobkp")
return dao.saveCollection(collection)
})