Files
packages.dart/experimental/pocketbase_sync/example/pb_migrations/1766534877_deleted_notes.js
T
2026-01-15 14:38:46 -08:00

38 lines
964 B
JavaScript
Vendored

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3395098727");
return app.delete(collection);
}, (app) => {
const collection = new Collection({
"createRule": "@request.auth.id != \"\"",
"deleteRule": "@request.auth.id != \"\"",
"fields": [
{
"autogeneratePattern": "[a-z0-9]{15}",
"hidden": false,
"id": "text3208210256",
"max": 15,
"min": 15,
"name": "id",
"pattern": "^[a-z0-9]+$",
"presentable": false,
"primaryKey": true,
"required": true,
"system": true,
"type": "text"
}
],
"id": "pbc_3395098727",
"indexes": [],
"listRule": "@request.auth.id != \"\"",
"name": "notes",
"system": false,
"type": "base",
"updateRule": "@request.auth.id != \"\"",
"viewRule": "@request.auth.id != \"\""
});
return app.save(collection);
})