관리-도구
편집 파일: 2023_11_07_104546_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('blog_id'); $table->unsignedBigInteger('user_id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->text('comment'); $table->boolean('status')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('blog_comments'); } };