fix(editor): Use DB_TABLE_PREFIX on data store tables and refactor data store user table repo (no-changelog) (#18604)

This commit is contained in:
Jaakko Husso
2025-08-21 16:25:17 +02:00
committed by GitHub
parent f7a663172b
commit d01616cf3d
11 changed files with 90 additions and 113 deletions

View File

@@ -53,6 +53,5 @@ export {
type DataStoreCreateColumnSchema,
type DataStoreListFilter,
type DataStoreListOptions,
type DataStoreUserTableName,
dateTimeSchema,
} from './schemas/data-store.schema';

View File

@@ -39,8 +39,6 @@ export const dataStoreSchema = z.object({
export type DataStore = z.infer<typeof dataStoreSchema>;
export type DataStoreColumn = z.infer<typeof dataStoreColumnSchema>;
export type DataStoreUserTableName = `data_store_user_${string}`;
export type DataStoreListFilter = {
id?: string | string[];
projectId?: string | string[];