11# laravel-migration-generator
2+
23[ ![ CI] ( https://github.com/N3XT0R/laravel-migration-generator/actions/workflows/ci.yml/badge.svg )] ( https://github.com/N3XT0R/laravel-migration-generator/actions/workflows/ci.yml )
34[ ![ Latest Stable Version] ( https://poser.pugx.org/n3xt0r/laravel-migration-generator/v/stable )] ( https://packagist.org/packages/n3xt0r/laravel-migration-generator )
4- [ ![ Test Coverage] ( https://api.codeclimate.com/v1/ badges/3be6f76e8df15784a025 /test_coverage )] ( https://codeclimate.com/github /N3XT0R/laravel-migration-generator/test_coverage )
5- [ ![ Maintainability] ( https://api.codeclimate.com/v1/ badges/3be6f76e8df15784a025 /maintainability )] ( https://codeclimate.com/github /N3XT0R/laravel-migration-generator/maintainability )
5+ [ ![ Code Coverage] ( https://qlty.sh/ badges/dafd3f82-6646-47ae-a73e-3007d27fd67d /test_coverage.svg )] ( https://qlty.sh/gh /N3XT0R/projects/ laravel-migration-generator )
6+ [ ![ Maintainability] ( https://qlty.sh/ badges/dafd3f82-6646-47ae-a73e-3007d27fd67d /maintainability.svg )] ( https://qlty.sh/gh /N3XT0R/projects/ laravel-migration-generator )
67[ ![ License] ( https://poser.pugx.org/n3xt0r/laravel-migration-generator/license )] ( https://packagist.org/packages/n3xt0r/laravel-migration-generator )
78
89This Migration-Generator generates Migrations in correct order, when referential integrity is used.
@@ -28,10 +29,9 @@ to migrate the schema without constraint violations.
2829 - Pdo_mysql extension
2930- MySQL 5.7 or higher
3031
31-
3232## Installation
3333
34- You can install this package over composer via
34+ You can install this package over composer via
3535
3636``
3737composer require n3xt0r/laravel-migration-generator
@@ -58,7 +58,6 @@ It will dump all your tables to the database/migrations folder in correct order.
5858So when you are using referential integrity it will write all migrations so that they could be
5959re-migrated without changing manually the order of the migration-files.
6060
61-
6261### Custom Export
6362
6463Are you unhappy with the exported migrations? When you should need some customizations on it,
@@ -67,9 +66,9 @@ it would be possible to customize the export by extending the export-classes ove
6766There is a Configuration file called "migration-generator", that you could publish and customize.
6867Every Export-Function like "exporting fields" or "exporting indexes" or else has a Definition- and a Mapping-Class.
6968
70- #### Definition-Classes
69+ #### Definition-Classes
7170
72- Definition-Classes are classes that define the internal runtime export-format.
71+ Definition-Classes are classes that define the internal runtime export-format.
7372They are used to generate the Schema-Results to a universal format, so that you or anyone else could extend it.
7473
7574#### Mapping-Classes
0 commit comments