diff --git a/backend/src/typeorm/entity/Migration.ts b/backend/src/typeorm/entity/Migration.ts index fbeeca14d..f1163cfbc 100644 --- a/backend/src/typeorm/entity/Migration.ts +++ b/backend/src/typeorm/entity/Migration.ts @@ -10,12 +10,4 @@ export class Migration extends BaseEntity { @Column({ type: 'datetime', default: () => 'CURRENT_TIMESTAMP' }) date: Date - - /* - static findByUser(userId: number): Promise { - return this.createQueryBuilder('balance') - .where('balance.userId = :userId', { userId }) - .getOneOrFail() - } - */ }