aboutsummaryrefslogblamecommitdiffstats
path: root/railties/configs/database.yml
blob: b72fd61bc783aa5b07ff7dda051cd27f2e31fe13 (plain) (tree)
1
2
3
4
5
6
7
8
9

                
                                       

                 



                                                                       


                                                                  

                
                                





                 
                                      


                 
development:
  adapter: mysql
  database: <%= app_name %>_development
  host: localhost
  username: root
  password:
  # With the MySQL adapter on localhost, it defaults to /tmp/mysql.sock
  # socket: /var/run/mysqld/mysqld.sock
  
# 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.
test:
  adapter: mysql
  database: <%= app_name %>_test
  host: localhost
  username: root
  password:

production:
  adapter: mysql
  database: <%= app_name %>_production
  host: localhost
  username: root
  password: