Umbau auf postgres 2. step

This commit is contained in:
2024-04-22 22:26:44 +02:00
parent c90d6b72b7
commit 7f0f21b598
77 changed files with 3325 additions and 3066 deletions

14
crawler/UserInterface.ts Normal file
View File

@@ -0,0 +1,14 @@
export interface User {
id: string;
firstname: string;
lastname: string;
email: string;
phoneNumber?: string;
description?: string;
created_at: Date;
updated_at?: Date;
isActive: boolean;
score?: number;
balance?: number;
tags?: string[];
}