From 9c2727cdc4854bbf9ca77daf6e5d02e025728206 Mon Sep 17 00:00:00 2001 From: RemRem Date: Wed, 30 Nov 2022 17:18:00 +0100 Subject: [PATCH] tw --- lib/database/accounts_to_postgres.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/database/accounts_to_postgres.dart b/lib/database/accounts_to_postgres.dart index bc74c17..9bcb25f 100644 --- a/lib/database/accounts_to_postgres.dart +++ b/lib/database/accounts_to_postgres.dart @@ -10,11 +10,11 @@ class AccountsToPostgres { // Production final connection = PostgreSQLConnection( - Platform.environment["ENV_DB_SERVER"]!, + Platform.environment["CODEFIRST_CLIENTDRONE_ENV_DB_SERVER"]!, 5432, - Platform.environment["ENV_DB_DATABASE"]!, - username: Platform.environment["ENV_DB_USER"], - password: Platform.environment["ENV_DB_PASSWORD"]); + Platform.environment["CODEFIRST_CLIENTDRONE_ENV_DB_DATABASE"]!, + username: Platform.environment["CODEFIRST_CLIENTDRONE_ENV_DB_USER"], + password: Platform.environment["CODEFIRST_CLIENTDRONE_ENV_DB_PASSWORD"]); AccountsToPostgres() { initConnection();