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:
parent
4645da9521
commit
0fcbe3158d
1 changed files with 5 additions and 5 deletions
|
@ -174,10 +174,10 @@ CREATE TABLE `sc_searchhistory` (
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE `sc_votes` (
|
CREATE TABLE `sc_votes` (
|
||||||
`bid` INT NOT NULL ,
|
`bId` INT NOT NULL ,
|
||||||
`uid` INT NOT NULL ,
|
`uId` INT NOT NULL ,
|
||||||
`vote` INT( 2 ) NOT NULL ,
|
`vote` INT( 2 ) NOT NULL ,
|
||||||
UNIQUE KEY `bid_2` (`bid`,`uid`),
|
UNIQUE KEY `bid_2` (`bId`,`uId`),
|
||||||
KEY `bid` (`bid`),
|
KEY `bid` (`bId`),
|
||||||
KEY `uid` (`uid`)
|
KEY `uid` (`uId`)
|
||||||
) CHARACTER SET utf8 COLLATE utf8_general_ci ;
|
) CHARACTER SET utf8 COLLATE utf8_general_ci ;
|
Loading…
Reference in a new issue