Add missing updated_at column to staff_activities migration

This commit is contained in:
root
2026-06-24 13:49:51 +02:00
parent a07a86be25
commit 6d1d90a94a
@@ -18,6 +18,7 @@ return new class extends Migration
$table->string('ip_address', 45)->nullable();
$table->json('metadata')->nullable();
$table->timestamp('created_at')->useCurrent()->index();
$table->timestamp('updated_at')->nullable();
});
}