]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/players.tab
Add an active indicator to player_elo.
[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   active_ind boolean NOT NULL default true,
8   create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'),
9   CONSTRAINT players_pk PRIMARY KEY (player_id)
10 )
11 WITH (
12   OIDS=FALSE
13 );
14 ALTER TABLE xonstat.players OWNER TO xonstat;