mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 07:25:03 +01:00
10 lines
247 B
SQL
10 lines
247 B
SQL
--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
|
|
) |