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/v251.ts

10 lines
317 B

import { addMigration } from '../../lib/migrations';
import { WebdavAccounts } from '../../../app/models/server/raw';
addMigration({
version: 251,
async up() {
// eslint-disable-next-line quote-props
await WebdavAccounts.updateMany({}, { $rename: { 'user_id': 'userId', 'server_url': 'serverURL' } });
},
});