Skip to content

Commit 801eba5

Browse files
committed
fix: remove '-' from database name
1 parent 12e05fc commit 801eba5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/database.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ default: &default
2525

2626
development:
2727
<<: *default
28-
database: demo-rails5_development
28+
database: demo_rails5_development
2929

3030
# The specified database role being used to connect to postgres.
3131
# To create additional roles in postgres see `$ createuser --help`.
@@ -59,7 +59,7 @@ development:
5959
# Do not set this db to the same as development or production.
6060
test:
6161
<<: *default
62-
database: demo-rails5_test
62+
database: demo_rails5_test
6363

6464
# As with config/secrets.yml, you never want to store sensitive information,
6565
# like your database password, in your source code. If your source code is
@@ -82,6 +82,6 @@ test:
8282
#
8383
production:
8484
<<: *default
85-
database: demo-rails5_production
85+
database: demo_rails5_production
8686
username: demo-rails5
8787
password: <%= ENV['DEMO_RAILS5_DATABASE_PASSWORD'] %>

0 commit comments

Comments
 (0)