aboutsummaryrefslogtreecommitdiff
path: root/data/schema/2.sql
diff options
context:
space:
mode:
Diffstat (limited to 'data/schema/2.sql')
-rw-r--r--data/schema/2.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/data/schema/2.sql b/data/schema/2.sql
new file mode 100644
index 0000000..171e011
--- /dev/null
+++ b/data/schema/2.sql
@@ -0,0 +1,10 @@
+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`)
+);