From 2cfe848ceb06d42812385fb495f57f3c1a480cc5 Mon Sep 17 00:00:00 2001 From: Kevin Cozens Date: Thu, 24 Mar 2016 16:43:27 -0400 Subject: [PATCH] Correct case in the names of the Avatar and Friends tables --- OpenSim/Data/MySQL/Resources/Avatar.migrations | 2 +- 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 07e6c68e5f..c5ec9ca55f 100644 --- a/OpenSim/Data/MySQL/Resources/Avatar.migrations +++ b/OpenSim/Data/MySQL/Resources/Avatar.migrations @@ -2,7 +2,7 @@ BEGIN; -CREATE TABLE IF NOT EXISTS `avatars` ( +CREATE TABLE IF NOT EXISTS `Avatars` ( `PrincipalID` char(36) NOT NULL, `Name` varchar(32) NOT NULL, `Value` text, diff --git a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations index 8e304deb89..6840f07131 100644 --- a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations +++ b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations @@ -2,7 +2,7 @@ BEGIN; -CREATE TABLE IF NOT EXISTS `friends` ( +CREATE TABLE IF NOT EXISTS `Friends` ( `PrincipalID` varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', `Friend` varchar(255) NOT NULL, `Flags` varchar(16) NOT NULL DEFAULT '0',