simedkom/database/migrations/2026_01_05_153123_create_contacts_table.php

38 lines
1.1 KiB
PHP

<?php
use App\Models\User;
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('contacts', function (Blueprint $table) {
$table->id();
$table->string('name', 100);
$table->string('email', 254);
$table->string('subject')->nullable();
$table->text('message');
$table->text('reply_message')->nullable();
$table->timestamp('replied_at')->nullable();
$table->foreignIdFor(User::class, 'replied_by')->nullable()->constrained()->cascadeOnDelete();
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->nullable()->useCurrentOnUpdate();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('contacts');
}
};