أُنشئ من Tokal/Test
28 أسطر
833 B
PHP
28 أسطر
833 B
PHP
<?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('notifications', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('user_id')->constrained('users')->cascadeOnDelete();
|
|
$table->enum('type', ['reservation_approved', 'reservation_rejected', 'reservation_reminder', 'general']);
|
|
$table->string('title');
|
|
$table->text('body');
|
|
$table->json('data_json')->nullable();
|
|
$table->boolean('is_read')->default(false);
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('notifications');
|
|
}
|
|
};
|