Level 16
Solution
- You need to enable foreign key constraints for sqlite which are disabled by default.
- You can paste this code in your schema class and laravel will take care of enabling it
DB::connection()->getSchemaBuilder()->enableForeignKeyConstraints();
Source
https://github.com/laravel/framework/issues/23461#issuecomment-372826966
1 like