From b19b5e7b00b34e439b7f6934603ef3feb8a94a8f Mon Sep 17 00:00:00 2001 From: hugetoad Date: Sat, 11 Aug 2001 10:22:11 +0000 Subject: Minor changes. git-svn-id: svn://svn.zabbix.com/trunk@161 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 46f4bf50..651d734b 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -112,7 +112,7 @@ CREATE TABLE actions ( good int4 DEFAULT '0' NOT NULL, delay int4 DEFAULT '0' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, - message varchar(255) DEFAULT '' NOT NULL, + message text DEFAULT '' NOT NULL, nextcheck int4 DEFAULT '0' NOT NULL, PRIMARY KEY (actionid), FOREIGN KEY (triggerid) REFERENCES triggers, @@ -130,7 +130,7 @@ CREATE TABLE alerts ( type varchar(10) DEFAULT '' NOT NULL, sendto varchar(100) DEFAULT '' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, - message varchar(255) DEFAULT '' NOT NULL, + message text DEFAULT '' NOT NULL, PRIMARY KEY (alertid), FOREIGN KEY (actionid) REFERENCES actions ); -- cgit