2017 © Pedro Peláez
 

library convert-migrations

Artisan command to convert your current SQL database schema into a Laravel 4 Migration file.

image

adamkearsley/convert-migrations

Artisan command to convert your current SQL database schema into a Laravel 4 Migration file.

  • Monday, June 27, 2016
  • by adamkearsley
  • Repository
  • 7 Watchers
  • 85 Stars
  • 5,357 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 38 Forks
  • 11 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

Laravel Convert Migrations

This is an artisan command to convert your current SQL database schema into a Laravel 4 Migration file. It'll come really handy when you have started a Laravel project without using migrations, or if you're migrating an old app to Laravel., (*1)

Installation

  1. Add the package to your composer.json file and run composer update:
"require": {
    "adamkearsley/convert-migrations": "dev-master"
}
  1. Add 'Adamkearsley\ConvertMigrations\ConvertMigrationsServiceProvider' to your app/config/app.php file, inside the providers array.

Usage

Now it's as easy as running php artisan convert:migrations myDatabaseName. Wait a few seconds and, magically, you'll have a new migration in app/database/migrations., (*2)

Ignoring Tables, (*3)

You can even ignore tables from the migration if you need to. Just use the ignore option and separate table names with a comma: php artisan convert:migrations --ignore="table1, table2"., (*4)

Credits

Credits go to "bruceoutdoors" original class., (*5)

The Versions

27/06 2016

dev-master

9999999-dev

Artisan command to convert your current SQL database schema into a Laravel 4 Migration file.

  Sources   Download

The Requires

 

by Adam Kearsley