28 lines
632 B
PHP
28 lines
632 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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('message', 500);
|
|
$table->string('email', 250);
|
|
$table->string('sender', 50);
|
|
$table->softDeletes();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('messages');
|
|
}
|
|
};
|