Skip to content
Snippets Groups Projects
Commit 65069d5f authored by syuilo's avatar syuilo
Browse files

wip

parent 02be56cf
No related branches found
No related tags found
No related merge requests found
......@@ -4,13 +4,15 @@ import db from '../../db/mongodb';
import Reaction from './post-reaction';
import { pack as packUser } from './user';
const PostReaction = db.get<IPostReaction>('post_reactions');
const PostReaction = db.get<IPostReaction>('postReactions');
export default PostReaction;
export interface IPostReaction {
_id: mongo.ObjectID;
created_at: Date;
deleted_at: Date;
createdAt: Date;
deletedAt: Date;
postId: mongo.ObjectID;
userId: mongo.ObjectID;
reaction: string;
}
......
import * as mongo from 'mongodb';
import db from '../../db/mongodb';
export default db.get('post_watching') as any; // fuck type definition
const PostWatching = db.get<IPostWatching>('postWatching');
export default PostWatching;
export interface IPostWatching {
_id: mongo.ObjectID;
createdAt: Date;
userId: mongo.ObjectID;
postId: mongo.ObjectID;
}
......@@ -147,3 +147,12 @@ db.pollVotes.update({}, {
post_id: 'postId'
}
}, false, true);
db.post_reactions.renameCollection('postReactions');
db.postReactions.update({}, {
$rename: {
created_at: 'createdAt',
user_id: 'userId',
post_id: 'postId'
}
}, false, true);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment