awkwardideas/migrator

MySQL to Laravel Migrator

1.0.0.0 2017-12-02 17:00 UTC

This package is auto-updated.

Last update: 2024-03-29 02:50:26 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Install Via Composer

composer require awkwardideas/migrator

Add to Laravel App Config

/*
 * Package Service Providers...
 */
AwkwardIdeas\Migrator\MigratorServiceProvider::class,

Commands via Artisan

Command line actions are done via artisan. The host, username, password from the .env file are used for making the connection.

php artisan migrator:clean

Removes all migrations files from the migrations folder

php artisan migrator:truncate

Truncates the provided database.

--database= Database to truncate --force Bypass confirmations

php artisan migrator:purge

Combination of Clean and Truncate

Options:

--database= Database to truncate --force Bypass confirmations

php artisan migrator:prepare

Create migration files using the database information in .env

Options:

--from= Database to migrate from --force Bypass confirmations

php artisan migrator:migrate

Create migration files using the database information in .env and run php artisan migrate

Options:

--from= Database to migrate from --to= Database to migrate to (for truncation) --force Bypass confirmations