doter1995 2019-03-12 21:17
浏览 129
已采纳

Laravel不能通过外键将两个表相互连接

I have two tables.

tableone: id, tabletwo_id
tabletwo: id, tableone_id

structure is something like that. they are connected using foreign key, but now I can't delete these tables at all. I mean laravel rollback doesn't work, tableone expects tabletwo to be deleted first and vice versa. So what can I do?

  • 写回答

1条回答 默认 最新

  • dsgrgaz321973284 2019-03-12 21:21
    关注

    You must be firstly delete foregin key constrant, then table.

    Schema::table('tabletwo', function(Blueprint $table)
    {
        $table->dropForeign('tabletwo_table_one_id_foreign');
    });
    
    Schema::drop('tabletwo');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?