chore(core): Rename Data Store DB entries to Data Table (no-changelog) (#18670)

This commit is contained in:
Charlie Kolb
2025-08-27 15:36:00 +02:00
committed by GitHub
parent 2ea3d034e3
commit 820fd12f08
20 changed files with 244 additions and 166 deletions

View File

@@ -5,7 +5,7 @@ export type DataStoreColumn = {
name: string;
type: DataStoreColumnType;
index: number;
dataStoreId: string;
dataTableId: string;
};
export type DataStore = {
@@ -15,7 +15,6 @@ export type DataStore = {
createdAt: Date;
updatedAt: Date;
projectId: string;
sizeBytes: number;
};
export type CreateDataStoreColumnOptions = Pick<DataStoreColumn, 'name' | 'type'> &