관리-도구
편집 파일: 2024_04_25_044820_create_user_skills_table.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_skills', function (Blueprint $table) { $table->id(); $table->foreignId('user_id')->references('id')->on('users')->onDelete('cascade'); $table->foreignId('skill_id')->references('id')->on('skills')->onDelete('cascade'); $table->timestamps(); } ); } public function down(): void { Schema::dropIfExists('user_skills'); } };