rename vote table columns

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@456 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-10-28 22:24:06 +00:00
parent 4645da9521
commit 0fcbe3158d

View 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 ;