Fix-up database config
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-11-08 15:37:37 +01:00
parent cf60bbc1dc
commit 3c429c905d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 7 additions and 8 deletions

View File

@ -1,10 +1,9 @@
production:
adapter: mysql2
database: "{{ env "MYSQL_NAME" }}"
encoding: utf8
host: "{{ env "MYSQL_HOST" }}"
password: "{{ secret "db_password" }}"
pool: 5
port: "{{ env "MYSQL_PORT" }}"
reconnect: false
adapter: "mysql2"
encoding: "utf8mb4"
collation: "utf8mb4_unicode_520_ci"
username: "{{ env "MYSQL_USER" }}"
password: "{{ secret "db_password" }}"
database: "{{ env "MYSQL_DB" }}"
host: "{{ env "MYSQL_HOST" }}"
port: "{{ env "MYSQL_PORT" }}"