관리-도구
편집 파일: 2025_09_29_222602_create_messages_table.php
<?php // database/migrations/xxxx_xx_xx_create_messages_table.php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up(): void { Schema::create('messages', function (Blueprint $table) { $table->id(); $table->string('name', 190); $table->string('email', 190); $table->string('phone', 50)->nullable(); $table->string('subject', 190)->nullable(); $table->text('message'); $table->boolean('is_read')->default(false); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('messages'); } };