관리-도구
편집 파일: 2024_05_20_133216_create_review_replies_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('review_replies', function (Blueprint $table) { $table->id(); $table->integer('review_id'); $table->integer('added_by_id')->nullable(); $table->string('added_by')->comment('customer, seller, admin, deliveryman'); $table->text('reply_text')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('review_replies'); } };