aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Data/MySQL/Resources/AvatarAppearance.sql5
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Data/MySQL/Resources/AvatarAppearance.sql b/OpenSim/Data/MySQL/Resources/AvatarAppearance.sql
index b638ee2..0deb099 100644
--- a/OpenSim/Data/MySQL/Resources/AvatarAppearance.sql
+++ b/OpenSim/Data/MySQL/Resources/AvatarAppearance.sql
@@ -2,9 +2,6 @@
2-- Create schema avatar_appearance 2-- Create schema avatar_appearance
3-- 3--
4 4
5CREATE DATABASE IF NOT EXISTS avatar_appearance;
6USE avatar_appearance;
7
8DROP TABLE IF EXISTS `avatarappearance`; 5DROP TABLE IF EXISTS `avatarappearance`;
9CREATE TABLE `avatarappearance` ( 6CREATE TABLE `avatarappearance` (
10 `UUID` char(36) NOT NULL, 7 `UUID` char(36) NOT NULL,
@@ -38,5 +35,5 @@ CREATE TABLE `avatarappearance` (
38 35
39 36
40 PRIMARY KEY (`UUID`) 37 PRIMARY KEY (`UUID`)
41) ENGINE=InnoDB DEFAULT CHARSET=utf8; 38) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev.1';
42 39