From 29886b161248ed4d7ca4ce050be44411cf50a896 Mon Sep 17 00:00:00 2001 From: Aidan Cornelius-Bell Date: Sat, 11 Jan 2025 18:46:48 +1030 Subject: [PATCH] fixed db name missing in test db --- config/database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.yml b/config/database.yml index 0399a33..0f0dbdf 100644 --- a/config/database.yml +++ b/config/database.yml @@ -35,7 +35,7 @@ development: test: adapter: mysql2 encoding: utf8mb4 - database: <%= ENV['MYSQL_DATABASE'] %> + database: arelpe_test username: <%= ENV['MYSQL_USERNAME'] %> password: <%= ENV['MYSQL_PASSWORD'] %> host: <%= ENV['MYSQL_HOST'] %> -- 2.39.5