diff options
author | Teravus Ovares | 2008-02-13 19:10:03 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-13 19:10:03 +0000 |
commit | d9e01bf4531fbe7eb320946559a484180340dcd7 (patch) | |
tree | 5289c2d56508b228aba6ac25f2b55f4a4236533b /OpenSim/Framework | |
parent | * This fixes mantis 553 (It appears that the exception is thrown when there i... (diff) | |
download | opensim-SC_OLD-d9e01bf4531fbe7eb320946559a484180340dcd7.zip opensim-SC_OLD-d9e01bf4531fbe7eb320946559a484180340dcd7.tar.gz opensim-SC_OLD-d9e01bf4531fbe7eb320946559a484180340dcd7.tar.bz2 opensim-SC_OLD-d9e01bf4531fbe7eb320946559a484180340dcd7.tar.xz |
*fixed varchar size typo in createuserfriendstable.sql
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/Resources/CreateUserFriendsTable.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Data.MySQL/Resources/CreateUserFriendsTable.sql b/OpenSim/Framework/Data.MySQL/Resources/CreateUserFriendsTable.sql index 157fe4b..8480d48 100644 --- a/OpenSim/Framework/Data.MySQL/Resources/CreateUserFriendsTable.sql +++ b/OpenSim/Framework/Data.MySQL/Resources/CreateUserFriendsTable.sql | |||
@@ -4,7 +4,7 @@ SET FOREIGN_KEY_CHECKS=0; | |||
4 | -- ---------------------------- | 4 | -- ---------------------------- |
5 | CREATE TABLE `userfriends` ( | 5 | CREATE TABLE `userfriends` ( |
6 | `ownerID` VARCHAR(37) NOT NULL, | 6 | `ownerID` VARCHAR(37) NOT NULL, |
7 | `friendID` VARCHAR(47) NOT NULL, | 7 | `friendID` VARCHAR(37) NOT NULL, |
8 | `friendPerms` INT NOT NULL, | 8 | `friendPerms` INT NOT NULL, |
9 | `datetimestamp` INT NOT NULL, | 9 | `datetimestamp` INT NOT NULL, |
10 | UNIQUE KEY (`ownerID`, `friendID`) | 10 | UNIQUE KEY (`ownerID`, `friendID`) |