Новые изменения
This commit is contained in:
parent
dc00e31578
commit
e621b3c40e
8 changed files with 234 additions and 54 deletions
24
backend/pb_migrations/1777232798_updated_post_views.js
Normal file
24
backend/pb_migrations/1777232798_updated_post_views.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/// <reference path="../pb_data/types.d.ts" />
|
||||
migrate((app) => {
|
||||
const collection = app.findCollectionByNameOrId("pbc_2019238136")
|
||||
|
||||
// update collection data
|
||||
unmarshal({
|
||||
"createRule": "@request.method = \"POST\"",
|
||||
"listRule": "@request.method = \"GET\"",
|
||||
"viewRule": "@request.method = \"GET\""
|
||||
}, collection)
|
||||
|
||||
return app.save(collection)
|
||||
}, (app) => {
|
||||
const collection = app.findCollectionByNameOrId("pbc_2019238136")
|
||||
|
||||
// update collection data
|
||||
unmarshal({
|
||||
"createRule": null,
|
||||
"listRule": null,
|
||||
"viewRule": null
|
||||
}, collection)
|
||||
|
||||
return app.save(collection)
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue