oops, it helps to reference the *right* migration

0.6.0-stable
Sean Dague 2008-06-19 14:46:54 +00:00
parent e6ce30d4f1
commit c2dc1636a6
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ namespace OpenSim.Data.NHibernate
// This actually does the roll forward assembly stuff
Assembly assem = GetType().Assembly;
Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "AssetStore");
Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "InventoryStore");
m.Update();
}

View File

@ -78,7 +78,7 @@ namespace OpenSim.Data.NHibernate
// This actually does the roll forward assembly stuff
Assembly assem = GetType().Assembly;
Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "AssetStore");
Migration m = new Migration((System.Data.Common.DbConnection)factory.ConnectionProvider.GetConnection(), assem, dialect, "UserStore");
m.Update();
}