add command works ,fix warnings, proxy repaired, docker start arguments defined
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
CREATE TABLE "servers" (
|
||||
"id" BIGSERIAL 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,
|
||||
@ -9,4 +8,4 @@ CREATE TABLE "servers" (
|
||||
"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');
|
||||
insert into servers (name, last_login, container_id, status, is_default, redirect_ip) values ('potato', now(), null, 1, false, 'play.hypixel.net:25565');
|
||||
|
||||
Reference in New Issue
Block a user