Files
vito/database/migrations/2025_06_13_162729_update_servers_table.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

24 lines
514 B
PHP

<?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::table('servers', function (Blueprint $table) {
$table->dropColumn('type');
$table->dropColumn('type_data');
});
}
public function down(): void
{
Schema::table('servers', function (Blueprint $table) {
//
});
}
};