1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Moving hint down. As required after all database examples.

This commit is contained in:
Arun Agrawal 2011-06-15 07:40:49 +05:30
parent 8f05a2f7ae
commit 57ace9868a

View file

@ -256,8 +256,6 @@ development:
password:
</yaml>
Change the username and password in the +development+ section as appropriate.
h5. Configuring an SQLite3 Database for Jruby Platform
If you choose to use SQLite3 and using Jruby, your +config/database.yml+ will look a little different. Here's the development section:
@ -293,6 +291,8 @@ development:
password:
<yaml>
Change the username and password in the +development+ section as appropriate.
TIP: You don't have to update the database configurations manually. If you had a look at the options of application generator, you have seen that one of them is named <tt>--database</tt>. It lets you choose an adapter for couple of most used relational databases. You can even run the generator repeatedly: <tt>cd .. && rails new blog --database=mysql</tt>. When you confirm the overwriting of the +config/database.yml+ file, your application will be configured for MySQL instead of SQLite.
h4. Creating the Database