start diesel setup

This commit is contained in:
2026-05-29 18:00:58 +02:00
parent 0cab69da71
commit 6e7285507d
20 changed files with 1140 additions and 107 deletions

View File

@ -0,0 +1 @@
DROP TABLE servers

View File

@ -0,0 +1,9 @@
CREATE TABLE "servers" (
"id" int PRIMARY KEY,
"name" varchar(255) UNIQUE NOT NULL,
"volume_path" varchar(255) UNIQUE NOT NULL,
"last_login" timestamp,
"container_id" varchar(30),
"status" int2 NOT NULL DEFAULT 0,
"redirect_ip" int
);