2

在我的项目中创建多个迁移后,我想回滚以更新一些内容,但是当我尝试删除projects表时突然出现此错误。我仔细检查了外键约束,但找不到错误。

[Illuminate\Database\QueryException]                                         
  SQLSTATE[23000]: Integrity constraint violation: 1217 Cannot delete or upda  
  te a parent row: a foreign key constraint fails (SQL: drop table `projects`  
  )                                                                                                                                                           
  [PDOException]                                                               
  SQLSTATE[23000]: Integrity constraint violation: 1217 Cannot delete or upda  
  te a parent row: a foreign key constraint fails  

这是我的迁移: 1.create table users:

public function up()
    {
        Schema::create('users', function(Blueprint $table)
        {
            $table->increments('id');
            $table->string('first_name');
            $table->string('last_name');
            $table->string('email', 50)->unique();
            $table->string('password', 60);
            $table->string('password_temp', 60);
            $table->string('code', 60);
            $table->boolean('active');
            $table->string('remember_token', 100);
            $table->timestamps();
        });
    }
    public function down()
    {
        Schema::drop('users');
    }

2.创建客户表:

public function up()
    {
        Schema::create('clients', function(Blueprint $table)
        {
            $table->increments('id');
            $table->integer('user_id')->unsigned()->index()->nullable();
            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
            $table->timestamps();
        });
    }
    public function down()
    {
        Schema::drop('clients');
    }

3.创建项目表:

public function up()
    {
        Schema::create('projects', function(Blueprint $table)
        {
            $table->increments('id');
            $table->string('name');
            $table->integer('status');
            $table->integer('client_id')->unsigned()->index()->nullable();
            $table->foreign('client_id')->references('id')->on('users')->onDelete('cascade');    
            $table->timestamps();
        });
    }
    public function down()
    {
        Schema::drop('projects');
    }

在上一次迁移中,我可能犯的错误是什么?!迁移时我没有遇到任何问题,但只有在我回滚以添加任何更改时才会出现。

知道为什么会这样吗?

4

4 回答 4

4

在向下功能中使用它。

public function down()
{
    DB::statement('SET FOREIGN_KEY_CHECKS = 0');
    Schema::dropIfExists('tableName');
    DB::statement('SET FOREIGN_KEY_CHECKS = 1');
}
于 2015-04-19T15:42:57.097 回答
3

当您在表中使用外键时,您需要在删除表之前使用 dropForeign 方法删除那些外键,否则您将遇到当前遇到的完整性约束问题。

public function down()
{
    Schema::table('projects', function(Blueprint $table) {
        $table->dropForeign('projects_client_id_foreign');
    });

    Schema::drop('projects');
}
于 2015-04-19T17:16:53.263 回答
3

如果上面提到的只有 3 个表,那么您的迁移没有问题,因为我自己尝试过

php artisan migrate

创建表和

php artisan migrate:rollback

回滚。

我知道的一件事是 Laravel 将根据迁移文件时间戳假设迁移顺序。

因此,我很确定还有另一个表具有对projects未删除的表的外键引用,因为错误消息是(SQL:drop table projects

尝试使用php artisan tinker,然后引用表的表Schema::drop('some_table_name');在哪里,然后再次删除表。some_table_nameprojectsprojects

于 2015-02-27T14:49:00.217 回答
2

此问题通常是通过编辑/添加到现有迁移来创建的。在处理外键时创建新的迁移文件,或者准备好可能转储/删除整个数据库并刷新。

于 2015-07-16T05:51:23.403 回答