server list, logs removed, driver/plan wip
This commit is contained in:
@@ -12,9 +12,14 @@ return new class extends Migration
|
||||
Schema::create('services', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignIdFor(Server::class);
|
||||
$table->string('category');
|
||||
$table->string('type');
|
||||
$table->string('name');
|
||||
$table->string('status');
|
||||
$table->string('category'); // database / cache / webserver
|
||||
$table->string('type'); // postgres / redis / caddy
|
||||
$table->string('version'); // 17 / 7 / 2
|
||||
$table->string('driver_name');
|
||||
$table->string('container_name')->nullable();
|
||||
$table->string('container_id')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user