Laravel 5.1 Migration and Seeding Cannot truncate a table referenced in a foreign key constraint

前端 未结 9 2147
借酒劲吻你
借酒劲吻你 2020-12-15 05:04

I\'m trying to run the migration (see below) and seed the database, but when I run

php artisan migrate --seed

I get this error:

<         


        
9条回答
  •  旧巷少年郎
    2020-12-15 05:34

    To clear a table using Eloquent:

    Model::query()->delete();
    

    Example using default user model

    User::query()->delete();
    

提交回复
热议问题