aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-10-13 20:29:55 -0400
committerTeravus Ovares (Dan Olivares)2010-10-13 20:29:55 -0400
commit46738bbd168873cdd73010165c120a5f8b96f3d3 (patch)
treec9668a82a06ec1577855b675f1f483ec7d871fba /OpenSim/Data/MySQL/Resources
parent* Normalizing endlines so git stops complaining about them being inconsistent. (diff)
parentAdded SOP.MediaUrl and Shape.Media to the deserialization (diff)
downloadopensim-SC_OLD-46738bbd168873cdd73010165c120a5f8b96f3d3.zip
opensim-SC_OLD-46738bbd168873cdd73010165c120a5f8b96f3d3.tar.gz
opensim-SC_OLD-46738bbd168873cdd73010165c120a5f8b96f3d3.tar.bz2
opensim-SC_OLD-46738bbd168873cdd73010165c120a5f8b96f3d3.tar.xz
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Conflicts: bin/OpenSimDefaults.ini
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r--OpenSim/Data/MySQL/Resources/Presence.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/Presence.migrations b/OpenSim/Data/MySQL/Resources/Presence.migrations
index 91f7de5..1075a15 100644
--- a/OpenSim/Data/MySQL/Resources/Presence.migrations
+++ b/OpenSim/Data/MySQL/Resources/Presence.migrations
@@ -13,3 +13,11 @@ CREATE UNIQUE INDEX SessionID ON Presence(SessionID);
13CREATE INDEX UserID ON Presence(UserID); 13CREATE INDEX UserID ON Presence(UserID);
14 14
15COMMIT; 15COMMIT;
16
17:VERSION 1 # --------------------------
18
19BEGIN;
20
21ALTER TABLE `Presence` ADD COLUMN LastSeen timestamp;
22
23COMMIT;