diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-12-27 08:33:08 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-12-27 08:33:08 +0000 |
| commit | 45baa47bcbca0caa0c8f2c930bb5b4307d4bfba9 (patch) | |
| tree | ee423700d38529e9a55a2c919422287a92b3393c /create | |
| parent | 3e2c4681abe924383ba2d822c842b9f4a4509a6a (diff) | |
| download | zabbix-45baa47bcbca0caa0c8f2c930bb5b4307d4bfba9.tar.gz zabbix-45baa47bcbca0caa0c8f2c930bb5b4307d4bfba9.tar.xz zabbix-45baa47bcbca0caa0c8f2c930bb5b4307d4bfba9.zip | |
- added srv_status.html and services.html (Alexei)
- added table services and services_links (Alexei)
- support for parameter StartAgents in zabbix_agentd.conf (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@270 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create')
| -rw-r--r-- | create/mysql/schema.sql | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql index 59f20d16..02253238 100644 --- a/create/mysql/schema.sql +++ b/create/mysql/schema.sql @@ -1,4 +1,26 @@ # +# Table structure for table 'services' +# + +CREATE TABLE services ( + serviceid int(4) NOT NULL auto_increment, + name varchar(128) DEFAULT '' NOT NULL, + triggerid int(4), + PRIMARY KEY (serviceid) +); + +# +# Table structure for table 'services_links' +# + +CREATE TABLE services_links ( + serviceupid int(4) DEFAULT '0' NOT NULL, + servicedownid int(4) DEFAULT '0' NOT NULL, + KEY (serviceupid), + KEY (servicedownid) +); + +# # Table structure for table 'graphs_items' # |
