Differences between the `--table` and` --create` options in laravel5 make: migration

I do not know what the differences are between the parameters php artisan make:migration --tableand php artisan make:migration --create?! I was completely confused :(
Are there any differences?
When should I use the option --tableor --create?
laravelSays that:

Parameters --tableand --createcan also be used to indicate the name of the table and whether the migration will create a new table.

+4
source share
2 answers

, . Schema::create (--create) . > , Schema::table (--table).

+4

- ; - ;

, ... ...

0

All Articles