Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/database/migrations/2021_08_15_193705_add_foreign_keys_to_user_groups_table.php

35 lines
889 B
PHP
Raw Normal View History

2022-01-12 00:35:37 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddForeignKeysToUserGroupsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('user_groups', function (Blueprint $table) {
$table->foreign('group_id')->references('id')->on('groups')->onDelete('CASCADE');
$table->foreign('user_id')->references('id')->on('users')->onDelete('CASCADE');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('user_groups', function (Blueprint $table) {
$table->dropForeign('user_groups_group_id_foreign');
$table->dropForeign('user_groups_user_id_foreign');
});
}
}