diff options
author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-07-04 06:34:33 +0000 |
---|---|---|
committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-07-04 06:34:33 +0000 |
commit | 2ea040cd24640d5cdb43b781025f7e7f96c87be4 (patch) | |
tree | 9c81128d2a502c4dc727ef7865747847a6b0ab4a /upgrades/dbpatches/1.1alpha10_to_1.1alpha11 | |
parent | cdf4f61a5d660da907e18aff9a481eca8dd9e2a1 (diff) | |
download | zabbix-2ea040cd24640d5cdb43b781025f7e7f96c87be4.tar.gz zabbix-2ea040cd24640d5cdb43b781025f7e7f96c87be4.tar.xz zabbix-2ea040cd24640d5cdb43b781025f7e7f96c87be4.zip |
- 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
Diffstat (limited to 'upgrades/dbpatches/1.1alpha10_to_1.1alpha11')
-rw-r--r-- | upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql | 2 | ||||
-rw-r--r-- | upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql index 8fa46e2e..437b7ec4 100644 --- a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql +++ b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/mysql/patch.sql @@ -1,4 +1,6 @@ alter table screens_items add rowspan int(4) DEFAULT '0' NOT NULL; +alter table users add autologout int(4) DEFAULT '900' NOT NULL; +alter table users add lang varchar(5) DEFAULT 'en_gb' NOT NULL; drop table escalation_rules; drop table escalations; diff --git a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql index e9a36cb8..05ca0299 100644 --- a/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql +++ b/upgrades/dbpatches/1.1alpha10_to_1.1alpha11/postgresql/patch.sql @@ -1,4 +1,6 @@ alter table screens_items add rowspan int4 DEFAULT '0' NOT NULL; +alter table users add autologout int4 DEFAULT '900' NOT NULL; +alter table users add lang varchar(5) DEFAULT 'en_gb' NOT NULL; drop table escalation_rules; drop table escalations; |