관리-도구
편집 파일: 2024_10_06_134632_create_blog_comments_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('blog_comments', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('user_id'); $table->unsignedBigInteger('blog_id'); $table->unsignedBigInteger('reply_id')->nullable(); $table->text('comment'); $table->foreign('reply_id')->references('id')->on('blog_comments')->onDelete('cascade'); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->foreign('blog_id')->references('id')->on('blogs')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('blog_comments'); } };