Fixed comments in Migration.cs: wrong argument order (no change to code)

slimupdates
AlexRa 2010-04-28 13:11:42 +03:00
parent aa56953411
commit b49e9eff56
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ namespace OpenSim.Data
/// When a database driver starts up, it specifies a resource that
/// needs to be brought up to the current revision. For instance:
///
/// Migration um = new Migration(Assembly, DbConnection, "Users");
/// um.Upgrade();
/// Migration um = new Migration(DbConnection, Assembly, "Users");
/// um.Update();
///
/// This works out which version Users is at, and applies all the
/// revisions past it to it. If there is no users table, all