]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blobdiff - tables/players.tab
Allow up to 128 characters in the player nick
[xonotic/xonstatdb.git] / tables / players.tab
index 5f2e685c79453a7e8de211284ad4911c35428d37..4e4e2d452f4c41dbc10b836275a7eb20d69cae42 100644 (file)
@@ -1,9 +1,9 @@
 CREATE TABLE xonstat.players
 (
   player_id serial NOT NULL,
-  nick character varying(64),
+  nick character varying(128),
   "location" character varying(100),
-  create_dt timestamp with time zone NOT NULL DEFAULT now(),
+  create_dt timestamp without time zone NOT NULL DEFAULT now(),
   CONSTRAINT players_pk PRIMARY KEY (player_id)
 )
 WITH (