28 lines
789 B
PHP
28 lines
789 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
|
||
|
|
return new class extends Migration
|
||
|
|
{
|
||
|
|
public function up(): void
|
||
|
|
{
|
||
|
|
Schema::create('user_dishes', function (Blueprint $table) {
|
||
|
|
$table->id();
|
||
|
|
$table->unsignedBigInteger('user_id');
|
||
|
|
$table->unsignedBigInteger('dish_id');
|
||
|
|
$table->timestamps();
|
||
|
|
|
||
|
|
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||
|
|
$table->foreign('dish_id')->references('id')->on('dishes')->onDelete('cascade');
|
||
|
|
$table->unique(['user_id', 'dish_id']);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
public function down(): void
|
||
|
|
{
|
||
|
|
Schema::dropIfExists('user_dishes');
|
||
|
|
}
|
||
|
|
};
|