47 lines
955 B
JavaScript
47 lines
955 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3332084752")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"indexes": [
|
|
"CREATE INDEX `idx_gxNj5R3hxv` ON `documents` (`type`)"
|
|
]
|
|
}, collection)
|
|
|
|
// add field
|
|
collection.fields.addAt(3, new Field({
|
|
"hidden": false,
|
|
"id": "select2363381545",
|
|
"maxSelect": 1,
|
|
"name": "type",
|
|
"presentable": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "select",
|
|
"values": [
|
|
"location",
|
|
"monster",
|
|
"npc",
|
|
"scene",
|
|
"secret",
|
|
"session",
|
|
"treasure"
|
|
]
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3332084752")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"indexes": []
|
|
}, collection)
|
|
|
|
// remove field
|
|
collection.fields.removeById("select2363381545")
|
|
|
|
return app.save(collection)
|
|
})
|