Skip to content

Commit c1f7f52

Browse files
committed
Rename command to make:super-migration
1 parent 7e10da9 commit c1f7f52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Laravel Super Migrations is distributed as a composer package. So you first have
1414

1515
Then you have to run `composer update` to install the package.
1616

17-
Only if you want to use the `make:migration:alt` command, you must add the service provider to the providers array in `config/app.php`:
17+
Only if you want to use the `make:super-migration` command, you must add the service provider to the providers array in `config/app.php`:
1818

1919
```
2020
'ProAI\SuperMigrations\SuperMigrationsServiceProvider'
@@ -103,7 +103,7 @@ We use `$this->upSchema()` and `$this->downSchema()` to define the up and down s
103103

104104
### Generator Command
105105

106-
Run `php artisan make:migration:alt` to create a new migration class that fits to the pattern of this package. You can declare a custom path with the `--path` option. Note that you have to include the service provider in order to use this command (see installation section).
106+
Run `php artisan make:super-migration` to create a new migration class that fits to the pattern of this package. You can declare a custom path with the `--path` option. Note that you have to include the service provider in order to use this command (see installation section).
107107

108108
## Support
109109

src/Console/MigrateMakeAltCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class MigrateMakeAltCommand extends BaseCommand
1313
*
1414
* @var string
1515
*/
16-
protected $signature = 'make:migration:alt {name : The name of the migration.}
16+
protected $signature = 'make:super-migration {name : The name of the migration.}
1717
{--path= : The location where the migration file should be created.}';
1818

1919
/**

0 commit comments

Comments
 (0)