* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Builder; return [ 'up' => function (Builder $schema) { $schema->table('group_permission', function (Blueprint $table) { $table->foreign('group_id')->references('id')->on('groups')->onDelete('cascade'); }); }, 'down' => function (Builder $schema) { $schema->table('group_permission', function (Blueprint $table) { $table->dropForeign('group_permission_group_id_foreign'); }); } ];