diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2003-05-25 16:15:30 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2003-05-25 16:15:30 +0000 |
| commit | 7a92bd8598c91aa3be9d716fad35a6574b9e06ce (patch) | |
| tree | 2702d2b95f961999be587eaa4955c5e7abc649b4 /create/data/data.sql | |
| parent | c0f005eadc69aaf9fabc16941083fb6335108810 (diff) | |
| download | zabbix-7a92bd8598c91aa3be9d716fad35a6574b9e06ce.tar.gz zabbix-7a92bd8598c91aa3be9d716fad35a6574b9e06ce.tar.xz zabbix-7a92bd8598c91aa3be9d716fad35a6574b9e06ce.zip | |
- added src/zabbix_sucker/alerter.h (Alexei)
- added src/zabbix_sucker/alerter.c (Alexei)
- removed column alerts.type, added column alerts.mediatypeid (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@779 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/data/data.sql')
| -rw-r--r-- | create/data/data.sql | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/create/data/data.sql b/create/data/data.sql index 5afd56c9..28313ca3 100644 --- a/create/data/data.sql +++ b/create/data/data.sql @@ -22,7 +22,13 @@ -- Data for table config -- -insert into config (smtp_server,smtp_helo,smtp_email,alert_history,alarm_history) values ('localhost','localhost','zabbix@localhost',365,365); +--insert into config (smtp_server,smtp_helo,smtp_email,alert_history,alarm_history) values ('localhost','localhost','zabbix@localhost',365,365); +insert into config (alert_history,alarm_history) values (365,365); + +-- +-- Data for table media_type +-- +insert into media_type (mediatypeid,type,description,smtp_server,smtp_helo,smtp_email,exec_path) values (0,0,'Email','localhost','localhost','zabbix@localhost',''); -- -- Data for table groups |
