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