diff --git a/shared/db/schema.ts b/shared/db/schema.ts index 7bff479..80b1902 100644 --- a/shared/db/schema.ts +++ b/shared/db/schema.ts @@ -16,10 +16,16 @@ import { import { relations, sql, type InferSelectModel } from 'drizzle-orm'; export type User = InferSelectModel; +export type Class = InferSelectModel; export type Transaction = InferSelectModel; +export type ItemTransaction = InferSelectModel; export type ModerationCase = InferSelectModel; export type Item = InferSelectModel; export type Inventory = InferSelectModel; +export type Quest = InferSelectModel; +export type UserQuest = InferSelectModel; +export type UserTimer = InferSelectModel; +export type Lootdrop = InferSelectModel; // --- TABLES ---