From 4513c71d703361c035fe1b8887480eef2296d218 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Fri, 3 May 2024 12:42:55 -0700 Subject: [PATCH] Fix table definition mismatch --- packages/node-sdk/paima-db/src/paima-tables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node-sdk/paima-db/src/paima-tables.ts b/packages/node-sdk/paima-db/src/paima-tables.ts index 44e2226d..4a584407 100644 --- a/packages/node-sdk/paima-db/src/paima-tables.ts +++ b/packages/node-sdk/paima-db/src/paima-tables.ts @@ -593,7 +593,7 @@ const TABLE_DATA_ACHIEVEMENT_PROGRESS: TableData = { columnData: packTuples([ ['wallet', 'text', 'NO', ''], ['name', 'text', 'NO', ''], - ['completed_date', 'timestamp', 'YES', ''], + ['completed_date', 'timestamp without time zone', 'YES', ''], ['progress', 'integer', 'YES', ''], ['total', 'integer', 'YES', ''], ]),