From 2ea040cd24640d5cdb43b781025f7e7f96c87be4 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 4 Jul 2005 06:34:33 +0000 Subject: - new utility zabbix_get (Alexei) - added src/zabbix_get/* (Alexei) - user timeout time is configurable (Alexei) - added support of locales on user level (Alexei) - added support of user profiles (Alexei) - removed include/local_en.inc.php - added include/locales/.htaccess (Alexei) - added include/locales/en_en.inc.php (Alexei) - added include/locales/de_de.inc.php (Alexei) - added include/locales/en_en.inc.php (Alexei) - added column users.lang (Alexei) - added column users.autologout (Alexei) - added frontends/php/profile.php (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1900 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 2 ++ 1 file changed, 2 insertions(+) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 1c3d1952..bd399fcd 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -168,6 +168,8 @@ CREATE TABLE users ( surname varchar(100) DEFAULT '' NOT NULL, passwd char(32) DEFAULT '' NOT NULL, url varchar(255) DEFAULT '' NOT NULL, + autologout int4 DEFAULT '900' NOT NULL, + lang varchar(5) DEFAULT 'en_gb' NOT NULL, PRIMARY KEY (userid) ); -- cgit