laravel5 make:migration 中的 `--table` 和 `--create` 选项之间的区别

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

我不知道 php artisan make:migration --tablephp artisan make:migration --create 选项之间有什么区别?!我完全糊涂了:(
有什么不同吗?
我什么时候应该使用 --table 选项或 --create 选项?
laravel says that :

The --table and --create options may also be used to indicate the name of the table, and whether the migration will be creating a new table

我想我找到了answer.To创建一个新数据库tableSchema::create方法被使用(--create选项)和更新现有的table,我们可以使用Schema::table方法(--table选项)。

--create表示创建; --table 表示改变一个(现有的)table;

但我同意这会引起很多混淆...在同一级别上使用动词和名词...