Новые изменения

This commit is contained in:
Web-serfer 2026-04-27 01:04:06 +05:00
parent dc00e31578
commit e621b3c40e
8 changed files with 234 additions and 54 deletions

View file

@ -0,0 +1,20 @@
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_2019238136")
// update collection data
unmarshal({
"updateRule": "@request.auth.id != \"\""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_2019238136")
// update collection data
unmarshal({
"updateRule": "@request.auth.id != ''"
}, collection)
return app.save(collection)
})