disable foreign key constraints

this code snippet will disable foreign key constraints checks on migration down method. just use this snippet on migration down method to disable foreign key constraint
 avatar
decayingMind
php
a year ago
52 B
4
Indexable
Never
<?php
Schema::disableForeignKeyConstraints();
?>