Files
stuart-craig-removals/database/migrations/2025_12_01_153847_create_contacts_table.php
T
2026-03-04 16:35:15 +00:00

27 lines
648 B
PHP

<?php
use App\Models\Contact;
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(Contact::tableName(), function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email');
$table->string('subject');
$table->text('message')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists(Contact::tableName());
}
};