remove companion tests

This commit is contained in:
2026-01-03 15:18:40 +01:00
parent 20f1b53c27
commit afbe42b0e1
67 changed files with 72 additions and 6325 deletions

View File

@@ -21,12 +21,12 @@ export class AdminUserOrmEntity {
@Column({ type: 'text', nullable: true })
primaryDriverId?: string;
@Column({ type: 'datetime', nullable: true })
@Column({ type: 'timestamp', nullable: true })
lastLoginAt?: Date;
@CreateDateColumn({ type: 'datetime' })
@CreateDateColumn({ type: 'timestamp' })
createdAt!: Date;
@UpdateDateColumn({ type: 'datetime' })
@UpdateDateColumn({ type: 'timestamp' })
updatedAt!: Date;
}