]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/cd_game_type.tab
Add an active indicator to player_elo.
[xonotic/xonstatdb.git] / tables / cd_game_type.tab
1 CREATE TABLE xonstat.cd_game_type
2 (
3   game_type_cd character varying(10) NOT NULL,
4   descr character varying(100) NOT NULL,
5   active_ind boolean NOT NULL DEFAULT true,
6   CONSTRAINT cd_game_type_pk PRIMARY KEY (game_type_cd)
7 )
8 WITH (
9   OIDS=FALSE
10 );
11 ALTER TABLE xonstat.cd_game_type OWNER TO xonstat;