]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/players.tab
Change game type codes to match new gametypes abbreviations.
[xonotic/xonstatdb.git] / tables / players.tab
1 CREATE TABLE xonstat.players
2 (
3   player_id serial NOT NULL,
4   nick character varying(128),
5   stripped_nick character varying(128),
6   "location" character varying(100),
7   create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
8   CONSTRAINT players_pk PRIMARY KEY (player_id)
9 )
10 WITH (
11   OIDS=FALSE
12 );
13 ALTER TABLE xonstat.players OWNER TO xonstat;