##// END OF EJS Templates
By default, only show statuses that are used by the tracker on the workflow edit view....
By default, only show statuses that are used by the tracker on the workflow edit view. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3188 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2794:94d34887cca9
r3074:6bf0723d0654
Show More
database.yml.example
42 lines | 818 B | text/plain | TextLexer
/ config / database.yml.example
Jean-Philippe Lang
Initial commit...
r2 # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
#
# Get the fast C bindings:
# gem install mysql
# (on OS X: gem install mysql -- --include=/usr/local/lib)
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
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
Jean-Philippe Lang
v0.2.0...
r5
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
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
Change deprecated dbfile parameter....
r2794 database: db/test.db