Skip to content

Commit

Permalink
refactor: ♻️ 사용하는 db 변경 temp_follows -> follows
Browse files Browse the repository at this point in the history
- close #405
  • Loading branch information
niamu01 committed Feb 20, 2024
1 parent 2df2d1e commit 3a498e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/follow/db/follow.database.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { HydratedDocument } from 'mongoose';

export type UserDocument = HydratedDocument<follow>;

@Schema({ collection: 'temp_follows' })
@Schema({ collection: 'follows' })
export class follow {
@Prop({ required: true })
userId: number;
Expand Down

0 comments on commit 3a498e5

Please sign in to comment.