astro_minivan/backend/pb_migrations/1765696949_updated_slider_cars.js
2026-03-29 17:24:16 +05:00

48 lines
1 KiB
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_44601008")
// add field
collection.fields.addAt(2, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text3616895705",
"max": 0,
"min": 0,
"name": "model",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
// add field
collection.fields.addAt(3, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text1542800728",
"max": 0,
"min": 0,
"name": "field",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_44601008")
// remove field
collection.fields.removeById("text3616895705")
// remove field
collection.fields.removeById("text1542800728")
return app.save(collection)
})