mtolhuijs/laravel-database-synchronizer

Synchronize your production and development databases with a simple command

0.3.6 2021-02-24 18:23 UTC

README

Latest Version on Packagist Total Downloads Build Status StyleCI Scrutinizer Code Quality

Keep your production and development databases in sync

This package will completely synchronize the database specified as "from" and "to" in the config or through the command options.

Want to collaborate? Nice! Take a look at contributing.md to see a to do list.

Installation

Via Composer

$ composer require mtolhuijs/laravel-database-synchronizer

Optionally you can run php artisan vendor:publish --provider mtolhuijs\LDS\DatabaseSynchronizerServiceProvider which will create a config file in the root config folder to adjust the behavior of the package.

Usage

This package comes with 1 command:

  • php artisan db:sync Synchronizes your "from" database with your "to" database
db:sync
{ --from= : Synchronize data from this database instead of the one specified in config }
{ --to= : Synchronize data to this database instead of the one specified in config }
{ --t|tables=* : Only run for given table(s) }
{ --st|skip-tables=* : Skip given table(s) }
{ --l|limit= : Limit query rows (defaults to 5000) }
{ --truncate : Truncate before inserting data }

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

license. Please see the license file for more information.