在 Laravel 5.5 中迁移时遇到错误
这是我的迁移文件的代码:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProfessionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('profesiones', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('profesiones');
}
}
消息很清楚,用户表当前存在于您的数据库中。你有几个选择,我会提到两个
users
手动从数据库中删除表并运行php artisan migrate
php artisan migrate:fresh
如果您有
seeders
,请记住在最后添加--seed
两个选项。