X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonstatdb.git;a=blobdiff_plain;f=tables%2Fplayers.tab;h=57e81d52f3b50bed203839a8813d27d47952ed09;hp=4e4e2d452f4c41dbc10b836275a7eb20d69cae42;hb=2f026e4afe1d96d4c3ef28dbfb4262c60b51bb7c;hpb=71e6138dde16af73702835e066e7fe4ae6a8283c diff --git a/tables/players.tab b/tables/players.tab old mode 100644 new mode 100755 index 4e4e2d4..57e81d5 --- a/tables/players.tab +++ b/tables/players.tab @@ -2,8 +2,11 @@ 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(), + email_addr character varying(255), + active_ind boolean NOT NULL default true, + create_dt timestamp without time zone NOT NULL DEFAULT (current_timestamp at time zone 'UTC'), CONSTRAINT players_pk PRIMARY KEY (player_id) ) WITH (