<?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('notices', function (Blueprint $table) {
            $table->id();

            $table->foreignId('environment_id')
                ->constrained('environments')
                ->cascadeOnDelete()
                ->cascadeOnUpdate();

            $table->string('model');
            $table->string('method');
            $table->string('type');
            $table->text('request')->nullable();
            $table->text('response')->nullable();
            $table->string('response_id')->nullable();
            $table->integer('status')->default(1);

            $table->timestamps();
            $table->softDeletes();

            // Evita duplicados por combinación environment_id + method + type
            $table->unique(['environment_id', 'method', 'type']);
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::dropIfExists('notices');
    }
};
