From 8cc0645ca0cad36c73c9efb42de5cbca4c0c3b0d Mon Sep 17 00:00:00 2001 From: marcuszerep Date: Fri, 31 Aug 2012 10:42:48 -0700 Subject: [PATCH] Update sql/ddl_install_script.sql --------------------------- Database Manager --------------------------- BLOB/TEXT column 'description' can't have a default value --------------------------- line 43 - Removed default value --------------------------- --------------------------- Database Manager --------------------------- You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') ENGINE=innoDB; -- UNIQUE KEY `uk_input_widget_htmlid` (`html_id`)' at line 18 --------------------------- line 101 - Removed comma --------------------------- --- sql/ddl_install_script.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/ddl_install_script.sql b/sql/ddl_install_script.sql index a964461..0946174 100755 --- a/sql/ddl_install_script.sql +++ b/sql/ddl_install_script.sql @@ -40,7 +40,7 @@ CREATE TABLE `report` ( `type` varchar(63) NOT NULL, `notes` varchar(255) DEFAULT '', `keywords` varchar(255) DEFAULT '', - `description` TEXT DEFAULT '', + `description` TEXT, `hidden_from_ui` BOOLEAN DEFAULT false, `enabled` BOOLEAN DEFAULT true, `db_adapter` VARCHAR(255), @@ -98,7 +98,7 @@ CREATE TABLE `input_widget` ( `select_sql` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, - PRIMARY KEY (`id`), + PRIMARY KEY (`id`) ) ENGINE=innoDB; - -- UNIQUE KEY `uk_input_widget_htmlid` (`html_id`) +-- UNIQUE KEY `uk_input_widget_htmlid` (`html_id`)