관리-도구
편집 파일: 2024_12_01_065637_create_heroes_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('heroes', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('user_id')->nullable()->references('id')->on('heroes')->onDelete('cascade'); $table->unsignedBigInteger('theme_id')->references('id')->on('themes')->onDelete('cascade'); $table->string(column: 'title'); $table->integer('status')->default(0); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('heroes'); } };