Bump version 3.0.2.

This commit is contained in:
Mike Cao
2025-12-03 23:01:22 -08:00
parent 2993db14f0
commit 33e927ed1f
4 changed files with 11 additions and 51 deletions

View File

@@ -303,9 +303,7 @@ function getClient() {
const url = process.env.DATABASE_URL;
const replicaUrl = process.env.DATABASE_REPLICA_URL;
const logQuery = process.env.LOG_QUERY;
const connectionUrl = new URL(url);
const schema = connectionUrl.searchParams.get('schema') ?? undefined;
const schema = getSchema();
const baseAdapter = new PrismaPg({ connectionString: url }, { schema });