]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/cd_mutator.tab
Add hit and fired to player_weapon_stats.
[xonotic/xonstatdb.git] / tables / cd_mutator.tab
1 CREATE TABLE xonstat.cd_mutator
2 (
3   mutator_cd integer NOT NULL,
4   "name" character varying(64) NOT NULL,
5   descr character varying(100),
6   active_ind boolean NOT NULL DEFAULT true,
7   CONSTRAINT cd_mutator_pk PRIMARY KEY (mutator_cd)
8 )
9 WITH (
10   OIDS=FALSE
11 );
12 ALTER TABLE xonstat.cd_mutator OWNER TO xonstat;