<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
Schema::create('comment_reports', function (Blueprint $table) {
$table->id();
$table->string('reason')->nullable();
$table->unsignedBigInteger('user_id')->index()->nullable();
$table->unsignedBigInteger('comment_id')->index()->nullable();
$table->string('user_ip')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('comment_reports');
}
};