Updated default db settings.
This commit is contained in:
parent
b726773410
commit
2d66b8f5a2
1 changed files with 10 additions and 5 deletions
|
@ -6,8 +6,9 @@
|
||||||
development:
|
development:
|
||||||
adapter: sqlite3
|
adapter: sqlite3
|
||||||
database: db/development.sqlite3
|
database: db/development.sqlite3
|
||||||
pool: 5
|
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
pool: 50
|
||||||
|
|
||||||
|
|
||||||
# Warning: The database defined as "test" will be erased and
|
# Warning: The database defined as "test" will be erased and
|
||||||
# re-generated from your development database when you run "rake".
|
# re-generated from your development database when you run "rake".
|
||||||
|
@ -15,11 +16,15 @@ development:
|
||||||
test:
|
test:
|
||||||
adapter: sqlite3
|
adapter: sqlite3
|
||||||
database: db/test.sqlite3
|
database: db/test.sqlite3
|
||||||
pool: 5
|
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
pool: 50
|
||||||
|
|
||||||
production:
|
production:
|
||||||
adapter: sqlite3
|
adapter: mysql2
|
||||||
database: db/production.sqlite3
|
database: zammad_prod
|
||||||
pool: 5
|
pool: 50
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
encoding: utf8
|
||||||
|
username: some_user
|
||||||
|
password: some_pass
|
||||||
|
host: 127.0.0.1
|
||||||
|
|
Loading…
Reference in a new issue