withoutRowid on statistics

This commit is contained in:
Ben Wilson 2023-08-11 22:40:54 -04:00
parent 8e7c0e5ce4
commit 5369b2dc12

View File

@ -2,7 +2,7 @@ import { Column, Entity, Index, PrimaryColumn } from 'typeorm';
import { TrackedEntity } from '../utils/TrackedEntity.entity';
@Entity()
@Entity({ withoutRowid: true })
//Index for the heartbeat update
@Index(["address", "clientName", "sessionId", "time"])
export class ClientStatisticsEntity extends TrackedEntity {