]> git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/players.tab
5f2e685c79453a7e8de211284ad4911c35428d37
[xonotic/xonstatdb.git] / tables / players.tab
1 CREATE TABLE xonstat.players
2 (
3   player_id serial NOT NULL,
4   nick character varying(64),
5   "location" character varying(100),
6   create_dt timestamp with 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;