diff options
author | Kevin Cozens | 2016-03-24 16:43:27 -0400 |
---|---|---|
committer | Kevin Cozens | 2016-03-24 16:43:27 -0400 |
commit | 2cfe848ceb06d42812385fb495f57f3c1a480cc5 (patch) | |
tree | b19409741453f3e9a7612c5deeb72926e37a2e04 /OpenSim/Data/MySQL | |
parent | Mantis 7842 - remove another possible null dereference (diff) | |
download | opensim-SC-2cfe848ceb06d42812385fb495f57f3c1a480cc5.zip opensim-SC-2cfe848ceb06d42812385fb495f57f3c1a480cc5.tar.gz opensim-SC-2cfe848ceb06d42812385fb495f57f3c1a480cc5.tar.bz2 opensim-SC-2cfe848ceb06d42812385fb495f57f3c1a480cc5.tar.xz |
Correct case in the names of the Avatar and Friends tables
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/Avatar.migrations | 2 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/Resources/FriendsStore.migrations | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/Resources/Avatar.migrations b/OpenSim/Data/MySQL/Resources/Avatar.migrations index 07e6c68..c5ec9ca 100644 --- a/OpenSim/Data/MySQL/Resources/Avatar.migrations +++ b/OpenSim/Data/MySQL/Resources/Avatar.migrations | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | BEGIN; | 3 | BEGIN; |
4 | 4 | ||
5 | CREATE TABLE IF NOT EXISTS `avatars` ( | 5 | CREATE TABLE IF NOT EXISTS `Avatars` ( |
6 | `PrincipalID` char(36) NOT NULL, | 6 | `PrincipalID` char(36) NOT NULL, |
7 | `Name` varchar(32) NOT NULL, | 7 | `Name` varchar(32) NOT NULL, |
8 | `Value` text, | 8 | `Value` text, |
diff --git a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations index 8e304de..6840f07 100644 --- a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations +++ b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | BEGIN; | 3 | BEGIN; |
4 | 4 | ||
5 | CREATE TABLE IF NOT EXISTS `friends` ( | 5 | CREATE TABLE IF NOT EXISTS `Friends` ( |
6 | `PrincipalID` varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | 6 | `PrincipalID` varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', |
7 | `Friend` varchar(255) NOT NULL, | 7 | `Friend` varchar(255) NOT NULL, |
8 | `Flags` varchar(16) NOT NULL DEFAULT '0', | 8 | `Flags` varchar(16) NOT NULL DEFAULT '0', |