@@ -16,7 +16,7 @@ return new class extends TenantMigration
$t->enum('status', ['draft', 'scheduled', 'processing', 'sent', 'failed', 'canceled'])->default('draft')->index();
$t->dateTime('schedule_at')->nullable()->index();
$t->dateTime('sent_at')->nullable();
- $t->foreignId('created_by')->constrained('users')->cascadeOnDelete();
+ $t->foreignId('created_by')->index();
$t->timestamps();
});