0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 06:52:41 +00:00

add MIGRATE environment variable

This commit is contained in:
Charlie Humphreys
2022-06-25 00:00:41 -05:00
parent c7d5d6800b
commit 8ee832e633

View File

@@ -68,23 +68,25 @@ HomebrewSchema.statics.getByUser = function(username, allowAccess=false, fields=
const Homebrew = mongoose.model('Homebrew', HomebrewSchema);
Homebrew.count({ tags: '' }, async (err, count)=>{
if(!err) {
if(count > 0) {
Homebrew.updateMany({ tags: '' }, { tags: [] }, { multi: true }, function(err, data) {
if(!err) {
console.log('Successfully updated all brews to new schema definition');
} else {
console.log('An error occurred while updating brews to the new schema', err);
}
});
if(process.env.MIGRATE === 'true') {
Homebrew.count({ tags: '' }, async (err, count)=>{
if(!err) {
if(count > 0) {
Homebrew.updateMany({ tags: '' }, { tags: [] }, { multi: true }, function(err, data) {
if(!err) {
console.log('Successfully updated all brews to new schema definition');
} else {
console.log('An error occurred while updating brews to the new schema', err);
}
});
} else {
console.log('No brews to update');
}
} else {
console.log('No brews to update');
console.log('An error occurred while counting brews with the old schema', err);
}
} else {
console.log('An error occurred while counting brews with the old schema', err);
}
});
});
}
module.exports = {
schema : HomebrewSchema,