53 lines
1 KiB
JavaScript
53 lines
1 KiB
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("_pb_users_auth_")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"oauth2": {
|
|
"mappedFields": {
|
|
"avatarURL": ""
|
|
}
|
|
}
|
|
}, collection)
|
|
|
|
// remove field
|
|
collection.fields.removeById("file376926767")
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("_pb_users_auth_")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"oauth2": {
|
|
"mappedFields": {
|
|
"avatarURL": "avatar"
|
|
}
|
|
}
|
|
}, collection)
|
|
|
|
// add field
|
|
collection.fields.addAt(8, new Field({
|
|
"hidden": false,
|
|
"id": "file376926767",
|
|
"maxSelect": 1,
|
|
"maxSize": 0,
|
|
"mimeTypes": [
|
|
"image/jpeg",
|
|
"image/png",
|
|
"image/svg+xml",
|
|
"image/gif",
|
|
"image/webp"
|
|
],
|
|
"name": "avatar",
|
|
"presentable": false,
|
|
"protected": false,
|
|
"required": false,
|
|
"system": false,
|
|
"thumbs": null,
|
|
"type": "file"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
})
|