fix: add support for 'postgresql' scheme

This commit is contained in:
Viren070
2025-07-23 14:39:08 +01:00
parent 0a8e8e4fe4
commit 3065dfcedd
+1 -1
View File
@@ -50,12 +50,12 @@ function parseConnectionURI(uri: string): ConnectionURI {
dialect,
};
}
case 'postgresql:':
case 'postgres:': {
driverName = 'pg';
dialect = 'postgres';
return {
url,
driverName,
dialect,
};