diff options
Diffstat (limited to 'config/database.mysql-sample.yml')
| -rw-r--r-- | config/database.mysql-sample.yml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/config/database.mysql-sample.yml b/config/database.mysql-sample.yml deleted file mode 100644 index bdb5311..0000000 --- a/config/database.mysql-sample.yml +++ /dev/null | |||
| @@ -1,45 +0,0 @@ | |||
| 1 | # MySQL. Versions 4.1 and 5.0 are recommended. | ||
| 2 | # | ||
| 3 | # Install the MySQL driver: | ||
| 4 | # gem install mysql | ||
| 5 | # On Mac OS X: | ||
| 6 | # sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql | ||
| 7 | # On Mac OS X Leopard: | ||
| 8 | # sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config | ||
| 9 | # This sets the ARCHFLAGS environment variable to your native architecture | ||
| 10 | # On Windows: | ||
| 11 | # gem install mysql | ||
| 12 | # Choose the win32 build. | ||
| 13 | # Install MySQL and put its /bin directory on your path. | ||
| 14 | # | ||
| 15 | # And be sure to use new-style password hashing: | ||
| 16 | # http://dev.mysql.com/doc/refman/5.0/en/old-client.html | ||
| 17 | development: | ||
| 18 | adapter: mysql | ||
| 19 | encoding: utf8 | ||
| 20 | database: mysql_development | ||
| 21 | pool: 5 | ||
| 22 | username: root | ||
| 23 | password: | ||
| 24 | socket: /opt/local/var/run/mysql5/mysqld.sock | ||
| 25 | |||
| 26 | # Warning: The database defined as "test" will be erased and | ||
| 27 | # re-generated from your development database when you run "rake". | ||
| 28 | # Do not set this db to the same as development or production. | ||
| 29 | test: | ||
| 30 | adapter: mysql | ||
| 31 | encoding: utf8 | ||
| 32 | database: mysql_test | ||
| 33 | pool: 5 | ||
| 34 | username: root | ||
| 35 | password: | ||
| 36 | socket: /opt/local/var/run/mysql5/mysqld.sock | ||
| 37 | |||
| 38 | production: | ||
| 39 | adapter: mysql | ||
| 40 | encoding: utf8 | ||
| 41 | database: mysql_production | ||
| 42 | pool: 5 | ||
| 43 | username: root | ||
| 44 | password: | ||
| 45 | socket: /opt/local/var/run/mysql5/mysqld.sock | ||
