如何正確更改/更新我的遷移,我正在使用Laravel 5.1。Laravel遷移更改/更新
的文件說,我應該用變化來更新列如:
$table->string('color', 10)->change();
但在那裏我必須把它的遷移和什麼命令我必須使用更新只是一個簡單的PHP工匠遷移?
我想這個至今:
public function up()
{
Schema::create('products', function (Blueprint $table)) {
$table->string('color', 5);
});
Schema::table('products', function (Blueprint $table)) {
$table->string('color', 10)->change();
});
}
而且使用這個命令:
php artisan migrate
但它並沒有改變。
您可以使用'artisan'爲您生成一個遷移文件'php artisan make:migration yourmigrationname' – Tuim