chore(db): drop Base entity type aliases (table no longer exists)

This commit is contained in:
Philipinho
2026-04-27 01:04:05 +01:00
parent 2b05d1520b
commit 731fa45672
@@ -6,7 +6,6 @@ import {
BaseProperties, BaseProperties,
BaseRows, BaseRows,
BaseViews, BaseViews,
Bases,
Comments, Comments,
Groups, Groups,
Notifications, Notifications,
@@ -212,11 +211,6 @@ export type Template = Selectable<Templates>;
export type InsertableTemplate = Insertable<Templates>; export type InsertableTemplate = Insertable<Templates>;
export type UpdatableTemplate = Updateable<Omit<Templates, 'id'>>; export type UpdatableTemplate = Updateable<Omit<Templates, 'id'>>;
// Base
export type Base = Selectable<Bases>;
export type InsertableBase = Insertable<Bases>;
export type UpdatableBase = Updateable<Omit<Bases, 'id'>>;
// Base Property // Base Property
export type BaseProperty = Selectable<BaseProperties>; export type BaseProperty = Selectable<BaseProperties>;
export type InsertableBaseProperty = Insertable<BaseProperties>; export type InsertableBaseProperty = Insertable<BaseProperties>;