diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-21 08:44:44 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-21 08:44:44 +0000 |
commit | 4de56ed6623c57c1c767be192ffe2af5926fe598 (patch) | |
tree | f1ad8e46567874cbdaefdcf873cf9dee4af32355 /upgrade.txt | |
parent | 81478ceba0c1bbdaa43679b72ec6d4fd603f5d17 (diff) | |
download | semanticscuttle-4de56ed6623c57c1c767be192ffe2af5926fe598.tar.gz semanticscuttle-4de56ed6623c57c1c767be192ffe2af5926fe598.tar.bz2 |
Refactoring: rename sc_tags into sc_bookmarks2tags (and services, codes...)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@116 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'upgrade.txt')
-rw-r--r-- | upgrade.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/upgrade.txt b/upgrade.txt index 9891ac9..11464eb 100644 --- a/upgrade.txt +++ b/upgrade.txt @@ -3,7 +3,15 @@ === From version 0.88 to 0.89 === - Backup you database - Make a copy from your SemanticScuttle Web directory -- Upgrade your database : add the following table (adapt its name prefix to your convenience) executin the following SQL commands: +- Upgrade your database : + + +* change the table called 'sc_tags' into 'sc_bookmarks2tags' by executing the following SQL commands (after changing 'yourdatabasename' and adapting its name prefix 'sc_' to your convenience): + + RENAME TABLE `yourdatabasename`.`sc_tags` TO `yourdatabasename`.`sc_bookmarks2tags` ; + + +* add the following table (adapt its name prefix to your convenience) executing the following SQL commands: CREATE TABLE `sc_searchhistory` ( `shId` int(11) NOT NULL auto_increment, |