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

42 lines
949 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3176773512")
// update field
collection.fields.addAt(9, new Field({
"hidden": false,
"id": "file2484770424",
"maxSelect": 1,
"maxSize": 0,
"mimeTypes": [],
"name": "hero_image",
"presentable": false,
"protected": false,
"required": false,
"system": false,
"thumbs": [],
"type": "file"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_3176773512")
// update field
collection.fields.addAt(9, new Field({
"hidden": false,
"id": "file2484770424",
"maxSelect": 1,
"maxSize": 0,
"mimeTypes": [],
"name": "background_image",
"presentable": false,
"protected": false,
"required": false,
"system": false,
"thumbs": [],
"type": "file"
}))
return app.save(collection)
})