Remove SSL from connection pool

This commit is contained in:
Sam Becker 2024-04-30 18:04:35 -05:00
parent 52eb85eeaf
commit 9d7c9de555

View File

@ -2,7 +2,6 @@ import { Pool, QueryResult, QueryResultRow } from 'pg';
const pool = new Pool({
connectionString: process.env.POSTGRES_URL,
ssl: true,
});
export type Primitive = string | number | boolean | undefined | null;