aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authoropensim mirror account2010-10-30 12:10:13 -0700
committeropensim mirror account2010-10-30 12:10:13 -0700
commit0ae4774ce50555a7641bc13d616d184935bdb15b (patch)
tree039f29d92aee894bcd525cf2c7d5d23e8efc1a08 /OpenSim/Data
parentMerge branch 'master' of /var/git/opensim/ (diff)
parentMove physics actor creation to after SetHeight to try and prevent (diff)
downloadopensim-SC_OLD-0ae4774ce50555a7641bc13d616d184935bdb15b.zip
opensim-SC_OLD-0ae4774ce50555a7641bc13d616d184935bdb15b.tar.gz
opensim-SC_OLD-0ae4774ce50555a7641bc13d616d184935bdb15b.tar.bz2
opensim-SC_OLD-0ae4774ce50555a7641bc13d616d184935bdb15b.tar.xz
Merge branch 'master' of /var/git/opensim/
Diffstat (limited to 'OpenSim/Data')
-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;