Files
gyoza2/pocketbase/pb_migrations/1742455529_updated_history.js
2025-03-20 09:07:33 +01:00

25 lines
572 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3068727201")
// update collection data
unmarshal({
"indexes": [
"CREATE INDEX `idx_hzzU2smrUc` ON `history` (`ref`)"
]
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_3068727201")
// update collection data
unmarshal({
"indexes": [
"CREATE UNIQUE INDEX `idx_hzzU2smrUc` ON `history` (`ref`)"
]
}, collection)
return app.save(collection)
})