*fixed varchar size typo in createuserfriendstable.sql

ThreadPoolClientBranch
Teravus Ovares 2008-02-13 19:10:03 +00:00
parent 2e89c01851
commit d9e01bf453
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
CREATE TABLE `userfriends` (
`ownerID` VARCHAR(37) NOT NULL,
`friendID` VARCHAR(47) NOT NULL,
`friendID` VARCHAR(37) NOT NULL,
`friendPerms` INT NOT NULL,
`datetimestamp` INT NOT NULL,
UNIQUE KEY (`ownerID`, `friendID`)