phinx.yml 713 B

123456789101112131415161718192021222324252627282930313233343536
  1. paths:
  2. migrations: '%%PHINX_CONFIG_DIR%%/db/migrations'
  3. seeds: '%%PHINX_CONFIG_DIR%%/db/seeds'
  4. environments:
  5. default_migration_table: phinxlog
  6. default_database: development
  7. production:
  8. adapter: mysql
  9. host: localhost
  10. name: production_db
  11. user: root
  12. pass: ''
  13. port: 3306
  14. charset: utf8
  15. development:
  16. adapter: mysql
  17. host: localhost
  18. name: test
  19. user: root
  20. pass: '123456'
  21. port: 3306
  22. charset: utf8
  23. testing:
  24. adapter: mysql
  25. host: localhost
  26. name: testing_db
  27. user: root
  28. pass: ''
  29. port: 3306
  30. charset: utf8
  31. version_order: creation