Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ---
  2. paths:
  3. migrations: '%%PHINX_CONFIG_DIR%%/src/db/migrations'
  4. seeds:
  5. - '%%PHINX_CONFIG_DIR%%/src/db/dev-seeds'
  6. - '%%PHINX_CONFIG_DIR%%/src/db/shared-seeds'
  7. environments:
  8. default_migration_table: phinxlog
  9. default_database: development
  10. production:
  11. adapter: mysql
  12. host: localhost
  13. name: production_db
  14. user: root
  15. pass: ""
  16. port: 3306
  17. charset: utf8
  18. development:
  19. adapter: mysql
  20. host: localhost
  21. name: lifevet
  22. user: root
  23. pass: root
  24. port: "8889"
  25. charset: utf8
  26. testing:
  27. adapter: mysql
  28. host: localhost
  29. name: testing_db
  30. user: root
  31. pass: ""
  32. port: 3306
  33. charset: utf8
  34. version_order: creation
  35. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement