laravel migrations drop foreign key code example

Example 1: larael drop foreign key

Schema::table('posts', function (Blueprint $table) {
	$table->dropForeign(['category_id']);
});

Example 2: laravel remove foreign key

$table->dropForeign('posts_user_id_foreign');

Example 3: laravel drop foreign column

// Searched, laravel drop foreign column
Schema::table('users', function (Blueprint $table) {
    $table->dropColumn(['votes', 'avatar', 'location']);
});

Example 4: laravel migration drop foreign keys

$table->dropPrimary('users_id_primary');

Tags:

Php Example