Migrations!

This commit is contained in:
2022-09-08 21:43:50 +02:00
parent 2a70074382
commit fb0ca6a3ba
7 changed files with 14 additions and 5 deletions

View File

@@ -18,6 +18,8 @@ export class User {
email: string;
password?: Nullable<string>;
time_joined?: Nullable<number>;
createdAt?: Nullable<DateTime>;
updatedAt?: Nullable<DateTime>;
}
export abstract class IQuery {