我试图使用此处的代码在laravel中创建迁移。但不幸的是,它弹出一个错误,就像这里给出的。
我使用PostgreSQL 9.2.24
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSuggestedsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('suggesteds', function (Blueprint $table) {
$table->increments('id');
$table->integer('channel_id')->unsigned()->index();
$table->string('group')->nullable()->index(); // 'technology',
'lifestyle', etc.
$table->string('language')->default('en')->index();
$table->integer('z_index')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('suggesteds');
}
}
在我使用MySQL之前,没有错误。 任何帮助将不胜感激。
答案 0 :(得分:0)
从数据库中手动删除suggesteds
表(如果存在),然后再次运行迁移脚本。
您还应该选中此issue
答案 1 :(得分:0)
请使用:
php artisan migrate:refresh