This commit is contained in:
2021-06-28 23:15:13 -04:00
parent 0061a3d920
commit f4a8db56ff
93 changed files with 2422 additions and 0 deletions

20
provm/Migrator.md Normal file
View File

@ -0,0 +1,20 @@
# Migrator
## Needs
+ To detect changes in migration schema and create migrations with Phinx
+ Keep track of incremental changes in schema
+ Create migration for Phinx
## Usage
Check for changes:
<code>vendor/bin/migrator check</code>
Create migrations:
<code>vendor/bin/migrator create</code>
Check the create migrations and then:
<code>vendor/bin/migrator migrate</code>
or
<code>vendor/bin/phinx migrate</code>