aboutsummaryrefslogtreecommitdiff
path: root/data/schema/4.sql
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-27 06:59:33 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-27 06:59:33 +0200
commit2419885577b4e38b82f5b0f4fbfe8077f680d825 (patch)
tree3d4d6c68e18cbaf5ca850b2ec53cbeaa9663821b /data/schema/4.sql
parent511124934764a6a420da89038aa2c3f02234692d (diff)
downloadsemanticscuttle-2419885577b4e38b82f5b0f4fbfe8077f680d825.tar.gz
semanticscuttle-2419885577b4e38b82f5b0f4fbfe8077f680d825.tar.bz2
make upgrade file fully rST-compatible and move SQL commands out into single schema files
Diffstat (limited to 'data/schema/4.sql')
-rw-r--r--data/schema/4.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/data/schema/4.sql b/data/schema/4.sql
new file mode 100644
index 0000000..022aaf0
--- /dev/null
+++ b/data/schema/4.sql
@@ -0,0 +1,11 @@
+ALTER TABLE `sc_bookmarks` ADD `bVoting` INT NOT NULL;
+ALTER TABLE `sc_bookmarks` ADD `bVotes` INT NOT NULL;
+
+CREATE TABLE `sc_votes` (
+ `bId` INT NOT NULL ,
+ `uId` INT NOT NULL ,
+ `vote` INT( 2 ) NOT NULL ,
+ UNIQUE KEY `bid_2` (`bId`,`uId`),
+ KEY `bid` (`bId`),
+ KEY `uid` (`uId`)
+) CHARACTER SET utf8 COLLATE utf8_general_ci ;