Skip to content

Commit f7af00c

Browse files
committed
changed from codeclimate to qlty.sh
1 parent 716b07c commit f7af00c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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

89
This 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
``
3737
composer require n3xt0r/laravel-migration-generator
@@ -58,7 +58,6 @@ It will dump all your tables to the database/migrations folder in correct order.
5858
So when you are using referential integrity it will write all migrations so that they could be
5959
re-migrated without changing manually the order of the migration-files.
6060

61-
6261
### Custom Export
6362

6463
Are 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
6766
There is a Configuration file called "migration-generator", that you could publish and customize.
6867
Every 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.
7372
They 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

Comments
 (0)