aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorSean Dague2008-05-19 21:39:02 +0000
committerSean Dague2008-05-19 21:39:02 +0000
commit419adadc465cd534e500397191e69027199c3268 (patch)
tree402c4768f601aa39e32adb46f41f3379ab40057f /OpenSim/Data/MySQL
parentfix a constant that meant pants still weren't working. now (diff)
downloadopensim-SC_OLD-419adadc465cd534e500397191e69027199c3268.zip
opensim-SC_OLD-419adadc465cd534e500397191e69027199c3268.tar.gz
opensim-SC_OLD-419adadc465cd534e500397191e69027199c3268.tar.bz2
opensim-SC_OLD-419adadc465cd534e500397191e69027199c3268.tar.xz
prep for changes need to create the appearance tables
by default
Diffstat (limited to 'OpenSim/Data/MySQL')
-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