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

42 lines
933 B
JavaScript

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