##// END OF EJS Templates
Bulgarian translation updated by Ivan Cenov (#12020)...
Bulgarian translation updated by Ivan Cenov (#12020) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10558 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9275:55ea557fe822
r10347:44137cb1d437
Show More
database.yml.example
41 lines | 933 B | text/plain | TextLexer
/ config / database.yml.example
Jean-Philippe Lang
Note about the mysql2 adapter in database.yml.example....
r9275 # Default setup is given for MySQL with ruby1.8. If you're running Redmine
# with MySQL and ruby1.9, replace the adapter name with `mysql2`.
# Examples for PostgreSQL and SQLite3 can be found at the end.
Jean-Philippe Lang
v0.2.0...
r5
production:
adapter: mysql
database: redmine
host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Toshi MARUYAMA
remove trailing white-spaces from config/database.yml.example....
r6437
Jean-Philippe Lang
Initial commit...
r2 development:
adapter: mysql
Jean-Philippe Lang
Native eol property set on config/*...
r761 database: redmine_development
Jean-Philippe Lang
Initial commit...
r2 host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Jean-Philippe Lang
Native eol property set on config/*...
r761
Jean-Philippe Lang
Cleanup and warning added in database.yml.database about the test database....
r3450 # Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
Jean-Philippe Lang
Initial commit...
r2 test:
adapter: mysql
Jean-Philippe Lang
Native eol property set on config/*...
r761 database: redmine_test
Jean-Philippe Lang
Initial commit...
r2 host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Jean-Philippe Lang
v0.2.0...
r5
test_pgsql:
adapter: postgresql
Jean-Philippe Lang
Test environments cleanup....
r1070 database: redmine_test
Jean-Philippe Lang
v0.2.0...
r5 host: localhost
username: postgres
password: "postgres"
Jean-Philippe Lang
Test environments cleanup....
r1070 test_sqlite3:
adapter: sqlite3
Jean-Philippe Lang
Ignores db/*.sqlite3....
r4633 database: db/test.sqlite3