wiseflow/pb/pb_migrations/1733753289_updated_infos.js

40 lines
872 B
JavaScript
Raw Normal View History

2024-12-10 14:18:03 +08:00
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_629947526")
// add field
collection.fields.addAt(4, new Field({
"exceptDomains": [],
"hidden": false,
"id": "url4101391790",
"name": "url",
"onlyDomains": [],
"presentable": false,
"required": true,
"system": false,
"type": "url"
}))
// add field
collection.fields.addAt(5, new Field({
"hidden": false,
"id": "file1486429761",
"maxSelect": 1,
"maxSize": 0,
"mimeTypes": [],
"name": "screenshot",
"presentable": false,
"protected": false,
"required": false,
"system": false,
"thumbs": [],
"type": "file"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_629947526")
return app.save(collection)
})