show date right in status description

This commit is contained in:
2026-06-01 00:21:14 +02:00
parent b818f7eaa3
commit dea2bd0af7
4 changed files with 189 additions and 2 deletions

View File

@ -5,5 +5,8 @@ CREATE TABLE "servers" (
"last_login" timestamp,
"container_id" varchar(30),
"status" int2 NOT NULL DEFAULT 0,
"redirect_ip" int
"is_default" bool NOT NULL DEFAULT false,
"redirect_ip" varchar(50)
);
insert into servers (name, volume_path, last_login, container_id, status, is_default, redirect_ip) values ('potato', 'nothing', now(), null, 1, false, 'play.hypixel.net:25565');