From: antzucaro Date: Wed, 16 Nov 2011 01:00:05 +0000 (-0500) Subject: Add stripped nick to the players table to support future search implementation. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f0df9969eb0d0e11a92e5cefc064e1e065ed9772;p=xonotic%2Fxonstatdb.git Add stripped nick to the players table to support future search implementation. --- diff --git a/tables/players.tab b/tables/players.tab index 4e4e2d4..b51fb33 100644 --- a/tables/players.tab +++ b/tables/players.tab @@ -2,6 +2,7 @@ CREATE TABLE xonstat.players ( player_id serial NOT NULL, nick character varying(128), + stripped_nick character varying(128), "location" character varying(100), create_dt timestamp without time zone NOT NULL DEFAULT now(), CONSTRAINT players_pk PRIMARY KEY (player_id)