foreign('user_id')->references('id')->on('users')->onDelete('CASCADE'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('groups', function (Blueprint $table) { $table->dropForeign('groups_user_id_foreign'); }); } }