13
src/models/hashtag.ts
Normal file
13
src/models/hashtag.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import * as mongo from 'mongodb';
|
||||
import db from '../db/mongodb';
|
||||
|
||||
const Hashtag = db.get<IHashtags>('hashtags');
|
||||
Hashtag.createIndex('tag', { unique: true });
|
||||
Hashtag.createIndex('mentionedUserIdsCount');
|
||||
export default Hashtag;
|
||||
|
||||
export interface IHashtags {
|
||||
tag: string;
|
||||
mentionedUserIds: mongo.ObjectID[];
|
||||
mentionedUserIdsCount: number;
|
||||
}
|
Reference in New Issue
Block a user