From: amazedkoumei Date: Sun, 25 Jun 2017 21:29:22 +0000 (+0900) Subject: fix unnecessary variable (#3947) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=436ce03772c8c87a215cdcd88020edfb8c241d38;p=mastodon.git fix unnecessary variable (#3947) --- diff --git a/config/database.yml b/config/database.yml index 079ea7b4a..f74635a36 100644 --- a/config/database.yml +++ b/config/database.yml @@ -18,10 +18,10 @@ development: test: <<: *default database: mastodon_test<%= ENV['TEST_ENV_NUMBER'] %> - username: <%= ENV['TEST_DB_USER'] %> - password: <%= ENV['TEST_DB_PASS'] %> - host: <%= ENV['TEST_DB_HOST'] %> - port: <%= ENV['TEST_DB_PORT'] %> + username: <%= ENV['DB_USER'] %> + password: <%= ENV['DB_PASS'] %> + host: <%= ENV['DB_HOST'] %> + port: <%= ENV['DB_PORT'] %> production: <<: *default