diff --git a/components/gitpod-db/src/tables.ts b/components/gitpod-db/src/tables.ts index 5095a7a4150af8..cb97e5ccc1bfe1 100644 --- a/components/gitpod-db/src/tables.ts +++ b/components/gitpod-db/src/tables.ts @@ -47,6 +47,12 @@ export class GitpodSessionTableDescriptionProvider implements TableDescriptionPr export class GitpodTableDescriptionProvider implements TableDescriptionProvider { readonly name = "gitpod"; protected readonly tables: TableDescription[] = [ + { + name: "d_b_workspace_cluster", + primaryKeys: ["name", "applicationCluster"], + timeColumn: "_lastModified", + deletionColumn: "deleted", + }, { name: "d_b_oauth_auth_code_entry", primaryKeys: ["id"],