From 5c6ab130f935f29a773728308422e85789a6e212 Mon Sep 17 00:00:00 2001 From: Milan Pavlik Date: Fri, 26 Aug 2022 05:56:49 +0000 Subject: [PATCH] [db-sync] Add d_b_workspace_instance_usage to db-sync --- components/gitpod-db/src/tables.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/gitpod-db/src/tables.ts b/components/gitpod-db/src/tables.ts index b6795442068c1f..d6e523ad1797b9 100644 --- a/components/gitpod-db/src/tables.ts +++ b/components/gitpod-db/src/tables.ts @@ -286,6 +286,12 @@ export class GitpodTableDescriptionProvider implements TableDescriptionProvider deletionColumn: "deleted", timeColumn: "_lastModified", }, + { + name: "d_b_workspace_instance_usage", + primaryKeys: ["instanceId"], + deletionColumn: "deleted", + timeColumn: "_lastModified", + }, ]; public getSortedTables(): TableDescription[] {