summaryrefslogtreecommitdiffstats
path: root/create/mysql
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-01-15 15:22:01 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-01-15 15:22:01 +0000
commit2ad69d319c3e91b66a1f64d4c9564ab11988d480 (patch)
tree75b484241f4b146418fb0e425480a4fab46e6622 /create/mysql
parent0addb971fb30890cf895dcc3713e47dbacfed72b (diff)
downloadzabbix-2ad69d319c3e91b66a1f64d4c9564ab11988d480.tar.gz
zabbix-2ad69d319c3e91b66a1f64d4c9564ab11988d480.tar.xz
zabbix-2ad69d319c3e91b66a1f64d4c9564ab11988d480.zip
- zabbix_agentd cannot be ran as root (Alexei)
- minor changes git-svn-id: svn://svn.zabbix.com/trunk@280 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/mysql')
-rw-r--r--create/mysql/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql
index e632f792..a9401bd3 100644
--- a/create/mysql/schema.sql
+++ b/create/mysql/schema.sql
@@ -202,7 +202,7 @@ CREATE TABLE hosts (
port int(4) DEFAULT '0' NOT NULL,
status int(4) DEFAULT '0' NOT NULL,
# If status=UNREACHABLE, host will not be checked until
- disabled_until int(4) DEFAULT '0' NOT NULL,
+ disable_until int(4) DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid),
KEY (status)
);