mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 10:23:09 +02:00
migration - add migration to support changed filename usage
This commit is contained in:
parent
2c234beb31
commit
696cd3b0e3
1 changed files with 30 additions and 0 deletions
30
tools/migration/change-gridfs-metadata-name-to-filename.js
Normal file
30
tools/migration/change-gridfs-metadata-name-to-filename.js
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
// for Node.js interpret
|
||||||
|
/**
|
||||||
|
* change usage of GridFS filename
|
||||||
|
* see commit fb422b4d603c53a70712caba55b35a48a8c2e619
|
||||||
|
*/
|
||||||
|
|
||||||
|
const { default: DriveFile } = require('../../built/api/models/drive-file')
|
||||||
|
|
||||||
|
async function applyNewChange (doc) {
|
||||||
|
const result = await DriveFile.update(doc._id, {
|
||||||
|
$set: {
|
||||||
|
filename: doc.metadata.name
|
||||||
|
},
|
||||||
|
$unset: {
|
||||||
|
'metadata.name': ''
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return result.ok === 1
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main () {
|
||||||
|
const oldTypeDocs = await DriveFile.find({
|
||||||
|
'metadata.name': {
|
||||||
|
$exists: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return await Promise.all(oldTypeDocs.map(applyNewChange))
|
||||||
|
}
|
||||||
|
|
||||||
|
main().then(console.dir).catch(console.error)
|
Loading…
Reference in a new issue