indexing changes and add world description

This commit is contained in:
wish
2022-09-04 16:40:06 +10:00
parent 3c096fa8d7
commit e0176ca774
2 changed files with 10 additions and 10 deletions

View File

@@ -7,14 +7,17 @@ CREATE TABLE IF NOT EXISTS public.servers
season integer NOT NULL,
current_players integer NOT NULL,
world_name text COLLATE pg_catalog."default",
world_description text,
land integer
)
);
ALTER TABLE public.servers
ADD COLUMN IF NOT EXISTS land integer;
ALTER TABLE IF EXISTS public.servers
ADD COLUMN land integer;
ALTER TABLE public.servers
ADD COLUMN IF NOT EXISTS world_name text COLLATE pg_catalog."default";
ALTER TABLE IF EXISTS public.servers
ADD COLUMN world_name text COLLATE pg_catalog."default";
ALTER TABLE public.servers
ADD COLUMN IF NOT EXISTS world_description text;
END;