Added world_name and land columns to the servers table to provide easier identification for external and internal applications utilizing the database

This commit is contained in:
Eclipse
2022-09-04 01:16:15 -04:00
parent df1a4834ba
commit dc874877d7
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
--adds world_name and land columns
CREATE TABLE IF NOT EXISTS public.servers
(
server_id integer NOT NULL,
season integer NOT NULL,
current_players integer NOT NULL,
world_name text COLLATE pg_catalog."default",
land integer
)