diff options
author | Your Name <you@example.com> | 2020-11-08 16:10:27 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-11-08 16:18:09 +0100 |
commit | 9f2de32c4ce7f0ad3abf1387e1a7971d5caf8c36 (patch) | |
tree | a475a4e5a99d67eaa9af79f01daa94223f824f64 | |
parent | 3a9397518c5026ea03e992926b766bb8247c30f9 (diff) | |
download | hmnoweb-9f2de32c4ce7f0ad3abf1387e1a7971d5caf8c36.tar.gz hmnoweb-9f2de32c4ce7f0ad3abf1387e1a7971d5caf8c36.tar.bz2 hmnoweb-9f2de32c4ce7f0ad3abf1387e1a7971d5caf8c36.zip |
Set more meaningful names for postgres db config.
-rw-r--r-- | config/database.yml.postgresql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/database.yml.postgresql b/config/database.yml.postgresql index 09c55d3..a7de61d 100644 --- a/config/database.yml.postgresql +++ b/config/database.yml.postgresql @@ -15,7 +15,7 @@ development: adapter: postgresql encoding: unicode - database: refinery_database_development + database: hmno_db_dev pool: 5 username: postgres password: postgres @@ -42,7 +42,7 @@ development: test: adapter: postgresql encoding: unicode - database: refinery_database_test + database: hmno_db_test pool: 5 username: postgres password: postgres @@ -51,7 +51,7 @@ test: production: adapter: postgresql encoding: unicode - database: refinery_database_production + database: hmno_db_prod pool: 5 username: postgres password: postgres |