Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
remove sync
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Sep 17, 2023
1 parent 4e2f69e commit 6d3f007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/db/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const dataSourceOptions: 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,
synchronize: (env == "development" ? true : false),
ssl: (env == "development" ? undefined : {
rejectUnauthorized: false,
requestCert: true,
Expand Down

0 comments on commit 6d3f007

Please sign in to comment.