From 8c985e87d6d6b494c57c2f98371985cc591c39ff Mon Sep 17 00:00:00 2001 From: Thomas <thomas@roundcube.net> Date: Mon, 07 Oct 2013 03:21:13 -0400 Subject: [PATCH] Backported the canned responses feature to the 0.9 release series --- SQL/mysql.initial.sql | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql index 47d9db4..cb750c5 100644 --- a/SQL/mysql.initial.sql +++ b/SQL/mysql.initial.sql @@ -186,4 +186,14 @@ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; +-- Table structure for table `system` + +CREATE TABLE `system` ( + `name` varchar(64) NOT NULL, + `value` mediumtext, + PRIMARY KEY(`name`) +) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; + /*!40014 SET FOREIGN_KEY_CHECKS=1 */; + +INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700'); -- Gitblit v1.9.1