Advertisement
Guest User

database.yml

a guest
Feb 5th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.32 KB | None | 0 0
  1. default: &default
  2.   adapter: mysql2
  3.   encoding: utf8
  4.   reconnect: false
  5.   pool: 5
  6.   username: 'root'
  7.   password: ''
  8.   host: 127.0.0.1
  9.   port: 3306
  10.  
  11. development:
  12.   <<: *default
  13.   database: libros_development
  14.  
  15. test:
  16.   <<: *default
  17.   database: libros_test
  18.  
  19. production:
  20.   <<: *default
  21.   database: libros_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement