aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/Avatar.migrations
diff options
context:
space:
mode:
authorJonathan Freedman2010-10-30 18:28:07 -0400
committerJonathan Freedman2010-10-30 18:28:07 -0400
commit95a0ea78f9604e8b4fcf0617c0943fe0486f4d08 (patch)
tree04358e5eb88e47a320f87ff8fc9f27276bbf4697 /OpenSim/Data/MySQL/Resources/Avatar.migrations
parentMerge branch 'master' into mantis5110 (diff)
parentFixed: ToAvatarAppearance wasn't retrieving the AvatarHeight. (diff)
downloadopensim-SC_OLD-95a0ea78f9604e8b4fcf0617c0943fe0486f4d08.zip
opensim-SC_OLD-95a0ea78f9604e8b4fcf0617c0943fe0486f4d08.tar.gz
opensim-SC_OLD-95a0ea78f9604e8b4fcf0617c0943fe0486f4d08.tar.bz2
opensim-SC_OLD-95a0ea78f9604e8b4fcf0617c0943fe0486f4d08.tar.xz
Merge branch 'master' into mantis5110
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/Avatar.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/Avatar.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/Avatar.migrations b/OpenSim/Data/MySQL/Resources/Avatar.migrations
index 8d0eee6..f7cf176 100644
--- a/OpenSim/Data/MySQL/Resources/Avatar.migrations
+++ b/OpenSim/Data/MySQL/Resources/Avatar.migrations
@@ -10,3 +10,11 @@ CREATE TABLE Avatars (
10 KEY(PrincipalID)); 10 KEY(PrincipalID));
11 11
12COMMIT; 12COMMIT;
13
14:VERSION 2
15
16BEGIN;
17
18alter table Avatars change column Value Value text;
19
20COMMIT;