Changeset 7116
- Timestamp:
- 06/25/07 18:01:15 (2 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/configs/databases/mysql.yml (modified) (3 diffs)
- trunk/railties/configs/databases/postgresql.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r7111 r7116 1 1 *SVN* 2 3 * MySQL, PostgreSQL: database.yml defaults to utf-8. #8701 [matt] 2 4 3 5 * Added db:version to get the current schema number [via Err The Blog] trunk/railties/configs/databases/mysql.yml
r6869 r7116 14 14 development: 15 15 adapter: mysql 16 encoding: utf8 16 17 database: <%= app_name %>_development 17 18 username: root … … 28 29 test: 29 30 adapter: mysql 31 encoding: utf8 30 32 database: <%= app_name %>_test 31 33 username: root … … 39 41 production: 40 42 adapter: mysql 43 encoding: utf8 41 44 database: <%= app_name %>_production 42 45 username: root trunk/railties/configs/databases/postgresql.yml
r3642 r7116 7 7 development: 8 8 adapter: postgresql 9 encoding: unicode 9 10 database: <%= app_name %>_development 10 11 username: <%= app_name %> … … 34 35 test: 35 36 adapter: postgresql 37 encoding: unicode 36 38 database: <%= app_name %>_test 37 39 username: <%= app_name %> … … 40 42 production: 41 43 adapter: postgresql 44 encoding: unicode 42 45 database: <%= app_name %>_production 43 46 username: <%= app_name %>