The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rocket.Chat/server/startup/migrations/v074.js

16 lines
538 B

RocketChat.Migrations.add({
version: 74,
up() {
if (RocketChat && RocketChat.models && RocketChat.models.Settings) {
RocketChat.models.Settings.remove({_id: 'Assets_favicon_64'});
RocketChat.models.Settings.remove({_id: 'Assets_favicon_96'});
RocketChat.models.Settings.remove({_id: 'Assets_favicon_128'});
RocketChat.models.Settings.remove({_id: 'Assets_favicon_256'});
RocketChat.models.Settings.update({_id: 'Assets_favicon_192'}, {
$set: {
i18nLabel: 'android-chrome 192x192 (png)'
}
});
}
}
});