summaryrefslogtreecommitdiffstatshomepage
path: root/upgrade.txt
diff options
context:
space:
mode:
authorGravatar mensonge2009-01-05 16:16:21 +0000
committerGravatar mensonge2009-01-05 16:16:21 +0000
commite04644d3150c878e8533b04209aef48b01fe8805 (patch)
tree2d343f820e54bddfcc26210e58b5af0645f564b1 /upgrade.txt
parentb5779bd638d02496aeab5e010d727c00f7b871a9 (diff)
downloadscuttle-e04644d3150c878e8533b04209aef48b01fe8805.tar.gz
scuttle-e04644d3150c878e8533b04209aef48b01fe8805.zip
Bug fix: correct gsearch link to api
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@211 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'upgrade.txt')
-rw-r--r--upgrade.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/upgrade.txt b/upgrade.txt
index 179b708..b729503 100644
--- a/upgrade.txt
+++ b/upgrade.txt
@@ -5,7 +5,16 @@
- Backup you database
- Make a copy from your SemanticScuttle Web directory
- Upgrade your database by following instructions ONE after ONE (order is important) :
- * No intructions
+ * ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` VARCHAR( 1500 )
+ * CREATE TABLE `sc_tagscache` (
+ `tcId` int(11) NOT NULL auto_increment,
+ `tag1` varchar(100) NOT NULL default '',
+ `tag2` varchar(100) NOT NULL default '',
+ `relationType` varchar(32) NOT NULL default '',
+ `uId` int(11) NOT NULL default '0',
+ PRIMARY KEY (`tcId`),
+ UNIQUE KEY `sc_tagscache_tag1_tag2_type_uId` (`tag1`,`tag2`,`relationType`,`uId`)
+);
- Upgrade your current configuration file (config.inc.php) with respect to config.inc.php.example
* Delete last line : include_once('debug.inc.php');
* Add variable: $menu2Tags = array('example', 'of', 'menu', 'tags');