From 630f7c16ec58327bf4b4c5e2fbcfe5d61250667f Mon Sep 17 00:00:00 2001 From: thomashii Date: Sun, 18 Feb 2024 12:03:36 +0800 Subject: [PATCH] Updated postgres configurations --- packages/orm/angel_orm_postgres/test/common.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/orm/angel_orm_postgres/test/common.dart b/packages/orm/angel_orm_postgres/test/common.dart index 664469ec..6464b73f 100644 --- a/packages/orm/angel_orm_postgres/test/common.dart +++ b/packages/orm/angel_orm_postgres/test/common.dart @@ -21,7 +21,7 @@ Future closePg(QueryExecutor executor) async { Future connectToPostgres(Iterable schemas) async { var host = Platform.environment['POSTGRES_HOST'] ?? 'localhost'; - var database = Platform.environment['POSTGRES_NAME'] ?? 'orm_test'; + var database = Platform.environment['POSTGRES_DB'] ?? 'orm_test'; var username = Platform.environment['POSTGRES_USERNAME'] ?? 'test'; var password = Platform.environment['POSTGRES_PASSWORD'] ?? 'test123';