Illuminate \ Database \ QueryException(42P01)SQLSTATE [42P01]:未定义表:7错误:关系“建议”不存在LINE 1

时间:2019-02-26 08:58:42

标签: laravel postgresql

我试图使用此处的代码在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之前,没有错误。 任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

从数据库中手动删除suggesteds表(如果存在),然后再次运行迁移脚本。

您还应该选中此issue

答案 1 :(得分:0)

请使用:

php artisan migrate:refresh