aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSean Dague2008-06-19 14:46:54 +0000
committerSean Dague2008-06-19 14:46:54 +0000
commitc2dc1636a69421922bdbd4b4e170b388cc310370 (patch)
tree58f60ffe3b0eb03b254e7c8f4777bdd81efb7269
parent* 0001571: (PATCH) patch to implement editable sphere meshes for meshmerizer/... (diff)
downloadopensim-SC_OLD-c2dc1636a69421922bdbd4b4e170b388cc310370.zip
opensim-SC_OLD-c2dc1636a69421922bdbd4b4e170b388cc310370.tar.gz
opensim-SC_OLD-c2dc1636a69421922bdbd4b4e170b388cc310370.tar.bz2
opensim-SC_OLD-c2dc1636a69421922bdbd4b4e170b388cc310370.tar.xz
oops, it helps to reference the *right* migration
-rw-r--r--OpenSim/Data/NHibernate/NHibernateInventoryData.cs2
-rw-r--r--OpenSim/Data/NHibernate/NHibernateUserData.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/NHibernate/NHibernateInventoryData.cs b/OpenSim/Data/NHibernate/NHibernateInventoryData.cs
index 2b36386..017759e 100644
--- a/OpenSim/Data/NHibernate/NHibernateInventoryData.cs
+++ b/OpenSim/Data/NHibernate/NHibernateInventoryData.cs
@@ -79,7 +79,7 @@ namespace OpenSim.Data.NHibernate
79 79
80 // This actually does the roll forward assembly stuff 80 // This actually does the roll forward assembly stuff
81 Assembly assem = GetType().Assembly; 81 Assembly assem = GetType().Assembly;
82 Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "AssetStore"); 82 Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "InventoryStore");
83 m.Update(); 83 m.Update();
84 84
85 } 85 }
diff --git a/OpenSim/Data/NHibernate/NHibernateUserData.cs b/OpenSim/Data/NHibernate/NHibernateUserData.cs
index 044c14a..a6ab2ac 100644
--- a/OpenSim/Data/NHibernate/NHibernateUserData.cs
+++ b/OpenSim/Data/NHibernate/NHibernateUserData.cs
@@ -78,7 +78,7 @@ namespace OpenSim.Data.NHibernate
78 78
79 // This actually does the roll forward assembly stuff 79 // This actually does the roll forward assembly stuff
80 Assembly assem = GetType().Assembly; 80 Assembly assem = GetType().Assembly;
81 Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "AssetStore"); 81 Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "UserStore");
82 m.Update(); 82 m.Update();
83 } 83 }
84 84