fedi-feed-router/database/migrations/2024_01_01_000006_create_notifications_table.php

34 lines
976 B
PHP
Raw Normal View History

<?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->string('type');
$table->string('severity');
$table->string('title');
$table->text('message');
$table->json('data')->nullable();
$table->string('notifiable_type')->nullable();
$table->unsignedBigInteger('notifiable_id')->nullable();
$table->timestamp('read_at')->nullable();
$table->timestamps();
$table->index('read_at');
$table->index('created_at');
$table->index(['notifiable_type', 'notifiable_id']);
});
}
public function down(): void
{
Schema::dropIfExists('notifications');
}
};