##// END OF EJS Templates
Typecast issue ids when searched for....
Typecast issue ids when searched for. Older Postgres versions don't allow searching over the id field's max size. Contributed by Holger Just git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3806 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3450:b028a48c53c3
r3692:7376ef2ad73d
Show More
database.yml.example
39 lines | 750 B | text/plain | TextLexer
/ config / database.yml.example
Jean-Philippe Lang
Cleanup and warning added in database.yml.database about the test database....
r3450 # MySQL (default setup).
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
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
Change deprecated dbfile parameter....
r2794 database: db/test.db