Skip to content

Latest commit

 

History

History
84 lines (53 loc) · 2.59 KB

README.md

File metadata and controls

84 lines (53 loc) · 2.59 KB

Migrate DB

Migrate DB

Stable Version Unstable Version Total Downloads Github Workflow Status License

Easy data transfer from one database to another

Installation

To get the latest version of Migrate DB, simply require the project using Composer:

$ composer require dragon-code/migrate-db --dev

Or manually update require-dev block of composer.json and run composer update.

{
    "require-dev": {
        "dragon-code/migrate-db": "^2.0"
    }
}

Upgrade from andrey-helldar/migrate-db

  1. In your composer.json file, replace "andrey-helldar/migrate-db": "^1.0" with "dragon-code/migrate-db": "^2.0".
  2. Run the command composer update.
  3. Profit!

Compatibility

Service Versions
PHP ^7.3, ^8.0
Laravel ^8.0
Databases MySQL 5.7+, PostgreSQL 9.5+, MSSQL

Using

Create a new database and set up both connections in the connections section of the config/database.php file, then run the db:migrate console command passing two parameters:

$ php artisan db:migrate --schema-from=foo --schema-to=bar

where:

The command will perform all migrations on the source and destination databases and transfer all records from the old to the new one.

Enjoy 😊

License

This package is licensed under the MIT License.