]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
rename vote table columns
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 28 Oct 2009 22:24:06 +0000 (22:24 +0000)
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 28 Oct 2009 22:24:06 +0000 (22:24 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@456 b3834d28-1941-0410-a4f8-b48e95affb8f

data/tables.sql

index fab716220448c17b30bdb76e2671ae71b987c38e..9f94d3b3218383fed0abca2ef283769e692e51f0 100644 (file)
@@ -174,10 +174,10 @@ CREATE TABLE `sc_searchhistory` (
 
 
 CREATE TABLE `sc_votes` (
-  `bid` INT NOT NULL ,
-  `uid` INT NOT NULL ,
+  `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`)
+  UNIQUE KEY `bid_2` (`bId`,`uId`),
+  KEY `bid` (`bId`),
+  KEY `uid` (`uId`)
 ) CHARACTER SET utf8 COLLATE utf8_general_ci ;
\ No newline at end of file