From 7c781eb0afc68cf9036afe9463af7b7af61ff232 Mon Sep 17 00:00:00 2001 From: alvrs Date: Wed, 4 Oct 2023 11:04:06 +0100 Subject: [PATCH] feat(store-sync): export postgres column type helpers --- packages/store-sync/src/postgres/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/store-sync/src/postgres/index.ts b/packages/store-sync/src/postgres/index.ts index d743dafd83..dd1f7c115f 100644 --- a/packages/store-sync/src/postgres/index.ts +++ b/packages/store-sync/src/postgres/index.ts @@ -6,3 +6,4 @@ export * from "./schemaVersion"; export * from "./postgresStorage"; export * from "./setupTables"; export * from "./syncToPostgres"; +export * from "./columnTypes";