From 731fa45672c720a8c3d6a7e10c8c82eb7e179b70 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 27 Apr 2026 01:04:05 +0100 Subject: [PATCH] chore(db): drop Base entity type aliases (table no longer exists) --- apps/server/src/database/types/entity.types.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/server/src/database/types/entity.types.ts b/apps/server/src/database/types/entity.types.ts index 530767795..306c48494 100644 --- a/apps/server/src/database/types/entity.types.ts +++ b/apps/server/src/database/types/entity.types.ts @@ -6,7 +6,6 @@ import { BaseProperties, BaseRows, BaseViews, - Bases, Comments, Groups, Notifications, @@ -212,11 +211,6 @@ export type Template = Selectable; export type InsertableTemplate = Insertable; export type UpdatableTemplate = Updateable>; -// Base -export type Base = Selectable; -export type InsertableBase = Insertable; -export type UpdatableBase = Updateable>; - // Base Property export type BaseProperty = Selectable; export type InsertableBaseProperty = Insertable;