diff options
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/AvatarAppearance.sql')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/AvatarAppearance.sql | 5 |
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 | ||
5 | CREATE DATABASE IF NOT EXISTS avatar_appearance; | ||
6 | USE avatar_appearance; | ||
7 | |||
8 | DROP TABLE IF EXISTS `avatarappearance`; | 5 | DROP TABLE IF EXISTS `avatarappearance`; |
9 | CREATE TABLE `avatarappearance` ( | 6 | CREATE 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 | ||