laravel5 make:migration 中的 `--table` 和 `--create` 选项之间的区别
differences between `--table` and `--create` options in laravel5 make:migration
我不知道 php artisan make:migration --table
和 php 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创建一个新数据库table,Schema::create
方法被使用(--create
选项)和更新现有的table,我们可以使用Schema::table
方法(--table
选项)。
--create表示创建;
--table 表示改变一个(现有的)table;
但我同意这会引起很多混淆...在同一级别上使用动词和名词...
我不知道 php artisan make:migration --table
和 php 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创建一个新数据库table,Schema::create
方法被使用(--create
选项)和更新现有的table,我们可以使用Schema::table
方法(--table
选项)。
--create表示创建; --table 表示改变一个(现有的)table;
但我同意这会引起很多混淆...在同一级别上使用动词和名词...