Skip to content

Commit

Permalink
fix: remove '-' from database name
Browse files Browse the repository at this point in the history
fix: remove '-' from  database name
  • Loading branch information
tsirysndr committed Aug 22, 2024
1 parent 12e05fc commit 2db1a25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
POSTGRES_USER: postgres
POSTGRES_DB: demo-rails5_test
POSTGRES_DB: demo_rails5_test
- name: check style + security
run: |
fluentci run --wasm ruby bundle_exec rubocop
Expand Down
6 changes: 3 additions & 3 deletions config/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ default: &default

development:
<<: *default
database: demo-rails5_development
database: demo_rails5_development

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

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

0 comments on commit 2db1a25

Please sign in to comment.