Files
imail/database/migrations/2026_03_05_113015_create_mailboxes_table.php

41 lines
1.3 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('mailboxes', function (Blueprint $table) {
$table->id();
$table->char('mailbox_hash', 64)->unique()->index();
$table->char('domain_hash', 64)->index();
$table->foreignId('user_id')->nullable()->constrained()->onDelete('set null');
$table->string('session_id')->nullable()->index();
$table->string('address')->unique()->index();
$table->string('type'); // public, private, custom, premium
$table->string('created_ip', 45)->nullable();
$table->string('last_accessed_ip', 45)->nullable();
$table->timestamp('last_accessed_at')->nullable();
$table->boolean('is_blocked')->default(false);
$table->text('block_reason')->nullable();
$table->timestamp('blocked_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('mailboxes');
}
};