wp-migrations icon indicating copy to clipboard operation
wp-migrations copied to clipboard

WordPress library for managing database table schema upgrades and data seeding

Results 5 wp-migrations issues
Sort by recently updated
recently updated
newest added

In `Migrator.php` on line 127 you run a loop with the following condition: ```php basename( $base_path ) != 'vendor' ``` The name of the vendor-directory is configurable in the composer.json....

As per README.md, `wp dbi migrate --rollback` without the migration argument, should rollback all migrations. > To rollback all migrations you can run wp dbi migrate --rollback, or just a...

Composer provide possibility to setup vendor installation path: https://getcomposer.org/doc/06-config.md#vendor-dir Currently if vendor path != 'vendor' your library goes to infinite loop at: ``` while ( basename( $base_path ) != 'vendor'...

Related to https://github.com/deliciousbrains/wp-migrations/issues/4#issuecomment-542680642