관리-도구
편집 파일: 2024_04_03_044043_create_user_education_table.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('user_education', function (Blueprint $table) { $table->id(); $table->foreignId('user_id'); $table->string('organization')->nullable(); $table->string('degree')->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->boolean('current')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('user_education'); } };