admin widget zu dokploy geswitched

This commit is contained in:
Codex Agent
2025-11-18 16:45:56 +01:00
parent 6720ad84cf
commit 125c624588
22 changed files with 693 additions and 512 deletions

View File

@@ -0,0 +1,28 @@
<?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
{
if (Schema::hasTable('coolify_action_logs')) {
Schema::rename('coolify_action_logs', 'infrastructure_action_logs');
}
}
/**
* Reverse the migrations.
*/
public function down(): void
{
if (Schema::hasTable('infrastructure_action_logs')) {
Schema::rename('infrastructure_action_logs', 'coolify_action_logs');
}
}
};