mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-10-27 21:49:04 +08:00
feat(web): add PocketBase backend with migrations and database
This commit is contained in:
29
web/backend/pb_migrations/1759323526_updated_users.js
Normal file
29
web/backend/pb_migrations/1759323526_updated_users.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/// <reference path="../pb_data/types.d.ts" />
|
||||
migrate((app) => {
|
||||
const collection = app.findCollectionByNameOrId("_pb_users_auth_")
|
||||
|
||||
// update collection data
|
||||
unmarshal({
|
||||
"passwordAuth": {
|
||||
"identityFields": [
|
||||
"username",
|
||||
"email"
|
||||
]
|
||||
}
|
||||
}, collection)
|
||||
|
||||
return app.save(collection)
|
||||
}, (app) => {
|
||||
const collection = app.findCollectionByNameOrId("_pb_users_auth_")
|
||||
|
||||
// update collection data
|
||||
unmarshal({
|
||||
"passwordAuth": {
|
||||
"identityFields": [
|
||||
"username"
|
||||
]
|
||||
}
|
||||
}, collection)
|
||||
|
||||
return app.save(collection)
|
||||
})
|
||||
Reference in New Issue
Block a user