1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 07:25:49 +02:00
Files
misskey/tools/migration/nighthike/11.js
syuilo a1b490afa7 Post --> Note
Closes #1411
2018-04-08 02:30:37 +09:00

36 lines
624 B
JavaScript

db.pollVotes.update({}, {
$rename: {
postId: 'noteId',
}
}, false, true);
db.postReactions.renameCollection('noteReactions');
db.noteReactions.update({}, {
$rename: {
postId: 'noteId',
}
}, false, true);
db.postWatching.renameCollection('noteWatching');
db.noteWatching.update({}, {
$rename: {
postId: 'noteId',
}
}, false, true);
db.posts.renameCollection('notes');
db.notes.update({}, {
$rename: {
_repost: '_renote',
repostId: 'renoteId',
}
}, false, true);
db.users.update({}, {
$rename: {
postsCount: 'notesCount',
pinnedPostId: 'pinnedNoteId',
latestPost: 'latestNote'
}
}, false, true);