ledgerrz/database/migrations/2026_06_14_222650_create_participants_table.php
2026-06-15 00:30:57 +02:00

30 lines
752 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('participants', function (Blueprint $table) {
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
$table->foreignId('dynamic_id')->constrained()->cascadeOnDelete();
$table->string('role')->default('participant');
$table->primary(['user_id', 'dynamic_id']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('participants');
}
};