From fedbcaf0c8ac62c0ee50f1f4ee8b68138c8c3c40 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Mon, 20 Jan 2014 09:30:26 -0500 Subject: [PATCH] - Added Welcome email function for clients and resellers. - Added email message templates. --- install/sql/incremental/upd_0063.sql | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/install/sql/incremental/upd_0063.sql b/install/sql/incremental/upd_0063.sql index 6c09466..77baa0e 100644 --- a/install/sql/incremental/upd_0063.sql +++ b/install/sql/incremental/upd_0063.sql @@ -1,2 +1,15 @@ ALTER TABLE `client` ADD `limit_domainmodule` INT NOT NULL DEFAULT '0'; ALTER TABLE `client_template` ADD `limit_domainmodule` INT NOT NULL DEFAULT '0'; +CREATE TABLE `client_message_template` ( + `client_message_template_id` bigint(20) NOT NULL AUTO_INCREMENT, + `sys_userid` int(11) NOT NULL DEFAULT '0', + `sys_groupid` int(11) NOT NULL DEFAULT '0', + `sys_perm_user` varchar(5) DEFAULT NULL, + `sys_perm_group` varchar(5) DEFAULT NULL, + `sys_perm_other` varchar(5) DEFAULT NULL, + `template_type` varchar(255) DEFAULT NULL, + `template_name` varchar(255) DEFAULT NULL, + `subject` varchar(255) DEFAULT NULL, + `message` text, + PRIMARY KEY (`client_message_template_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; \ No newline at end of file -- Gitblit v1.9.1