You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Generator will generate multiple migration files for each table. You can squash all migrations into single file with `--squash`.
99
+
By default, Generator will generate multiple migration files for each table.
100
+
101
+
You can squash all migrations into a single file with:
100
102
101
103
```bash
102
104
php artisan migrate:generate --squash
@@ -113,7 +115,7 @@ Run `php artisan help migrate:generate` for a list of options.
113
115
|-i, --ignore[=IGNORE]|A list of Tables you wish to ignore, separated by a comma: users,posts,comments|
114
116
|-p, --path[=PATH]|Where should the file be created?|
115
117
|-tp, --template-path[=TEMPLATE-PATH]|The location of the template for this generator|
116
-
|--date=[DATE]|Migrations will be created with specified date. Foreign keys will be crated for specified time + 1 second. Date should be in format suitable for Carbon::parse|
118
+
|--date[=DATE]|Migrations will be created with specified date. Foreign keys will be created for specified time + 1 second. Date should be in format suitable for `Carbon::parse`|
0 commit comments