Files
wanderer/db/pb_migrations/1706358694_updated_summit_log.js
Christian Beutel b302ccded0 initial commit
2024-01-27 20:39:12 +01:00

55 lines
1.2 KiB
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("dd2l9a4vxpy2ni8")
// remove
collection.schema.removeField("xwqncqng")
// add
collection.schema.addField(new SchemaField({
"system": false,
"id": "b4zqrqpa",
"name": "trail",
"type": "relation",
"required": false,
"presentable": false,
"unique": false,
"options": {
"collectionId": "e864strfxo14pm4",
"cascadeDelete": false,
"minSelect": null,
"maxSelect": 1,
"displayFields": null
}
}))
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("dd2l9a4vxpy2ni8")
// add
collection.schema.addField(new SchemaField({
"system": false,
"id": "xwqncqng",
"name": "author",
"type": "relation",
"required": false,
"presentable": false,
"unique": false,
"options": {
"collectionId": "_pb_users_auth_",
"cascadeDelete": false,
"minSelect": null,
"maxSelect": 1,
"displayFields": null
}
}))
// remove
collection.schema.removeField("b4zqrqpa")
return dao.saveCollection(collection)
})