]> git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/players.tab
Make the server hashkey an attribute instead of its own table.
[xonotic/xonstatdb.git] / tables / players.tab
1 CREATE TABLE xonstat.players
2 (
3   player_id serial NOT NULL,
4   nick character varying(128),
5   "location" character varying(100),
6   create_dt timestamp without time zone NOT NULL DEFAULT now(),
7   CONSTRAINT players_pk PRIMARY KEY (player_id)
8 )
9 WITH (
10   OIDS=FALSE
11 );
12 ALTER TABLE xonstat.players OWNER TO xonstat;