Make migration scripts
and use createdAt instead of _id
This commit is contained in:
@ -6,6 +6,7 @@ export default FollowedLog;
|
||||
|
||||
export type IFollowedLog = {
|
||||
_id: ObjectID;
|
||||
createdAt: Date;
|
||||
userId: ObjectID;
|
||||
count: number;
|
||||
};
|
||||
|
@ -6,6 +6,7 @@ export default FollowingLog;
|
||||
|
||||
export type IFollowingLog = {
|
||||
_id: ObjectID;
|
||||
createdAt: Date;
|
||||
userId: ObjectID;
|
||||
count: number;
|
||||
};
|
||||
|
Reference in New Issue
Block a user