diff options
author | AlexRa | 2010-04-28 13:11:42 +0300 |
---|---|---|
committer | AlexRa | 2010-04-28 13:11:42 +0300 |
commit | b49e9eff562076786f68088155c6a0c8b1192e4a (patch) | |
tree | 67bd7c02665f7088a712dbde42f55f04cea150a8 /OpenSim/Data/Migration.cs | |
parent | Compiler.cs contained method GetCompilerOutput which, apparently, (diff) | |
download | opensim-SC_OLD-b49e9eff562076786f68088155c6a0c8b1192e4a.zip opensim-SC_OLD-b49e9eff562076786f68088155c6a0c8b1192e4a.tar.gz opensim-SC_OLD-b49e9eff562076786f68088155c6a0c8b1192e4a.tar.bz2 opensim-SC_OLD-b49e9eff562076786f68088155c6a0c8b1192e4a.tar.xz |
Fixed comments in Migration.cs: wrong argument order (no change to code)
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/Migration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs index 0fb9e78..5ca8e44 100644 --- a/OpenSim/Data/Migration.cs +++ b/OpenSim/Data/Migration.cs | |||
@@ -53,8 +53,8 @@ namespace OpenSim.Data | |||
53 | /// When a database driver starts up, it specifies a resource that | 53 | /// When a database driver starts up, it specifies a resource that |
54 | /// needs to be brought up to the current revision. For instance: | 54 | /// needs to be brought up to the current revision. For instance: |
55 | /// | 55 | /// |
56 | /// Migration um = new Migration(Assembly, DbConnection, "Users"); | 56 | /// Migration um = new Migration(DbConnection, Assembly, "Users"); |
57 | /// um.Upgrade(); | 57 | /// um.Update(); |
58 | /// | 58 | /// |
59 | /// This works out which version Users is at, and applies all the | 59 | /// This works out which version Users is at, and applies all the |
60 | /// revisions past it to it. If there is no users table, all | 60 | /// revisions past it to it. If there is no users table, all |