From d3e532f4158a9fb9244f71f8e688131e0bd20a65 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Tue, 12 Sep 2023 10:15:53 +0300 Subject: [PATCH] create tables --- app/api/auth/[...nextauth]/route.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/auth/[...nextauth]/route.tsx b/app/api/auth/[...nextauth]/route.tsx index bacd2d7..1a8effb 100644 --- a/app/api/auth/[...nextauth]/route.tsx +++ b/app/api/auth/[...nextauth]/route.tsx @@ -14,6 +14,7 @@ const connection: DataSourceOptions = { username: process.env.POSTGRES_USER as string, password: process.env.POSTGRES_PASSWORD as string, database: (process.env.POSTGRES_DATABASE || "falkordb") as string, + synchronize: true, ssl: { rejectUnauthorized: false, requestCert: true,