You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
572 B
24 lines
572 B
/// <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)
|
|
})
|
|
|