migrations.php 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * Part of the Fuel framework.
  4. *
  5. * @package Fuel
  6. * @version 1.5
  7. * @author Fuel Development Team
  8. * @license MIT License
  9. * @copyright 2010 - 2013 Fuel Development Team
  10. * @link http://fuelphp.com
  11. */
  12. /**
  13. * NOTICE:
  14. *
  15. * If you need to make modifications to the default configuration, copy
  16. * this file to your app/config folder, and make them in there.
  17. *
  18. * This will allow you to upgrade fuel without losing your custom config.
  19. */
  20. return array(
  21. /*
  22. | Which version of the schema should be considered "current"
  23. |
  24. | Default: 0
  25. |
  26. */
  27. 'version' => array(
  28. 'app' => array(
  29. 'default' => 0,
  30. ),
  31. 'module' => array(),
  32. 'package' => array()
  33. ),
  34. /*
  35. | Folder name where migrations are stored relative to App, Module and Package Paths?
  36. |
  37. | Default: 'migrations/'
  38. |
  39. */
  40. 'folder' => 'migrations/',
  41. /*
  42. | Table name
  43. |
  44. | Default: 'migration'
  45. |
  46. */
  47. 'table' => 'migration',
  48. );