Skip to content

Commit

Permalink
Issue #84
Browse files Browse the repository at this point in the history
Fix Migrator.Console task for long support.
Thanks bergius.
  • Loading branch information
geofflane committed Jan 14, 2009
1 parent 93aa80d commit fa3bd41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Migrator.Console/MigratorConsole.cs
Expand Up @@ -30,7 +30,7 @@ public class MigratorConsole
private bool _trace = false;
private bool _dryrun = false;
private string _dumpTo;
private int _migrateTo = -1;
private long _migrateTo = -1;
private string[] args;

/// <summary>
Expand Down Expand Up @@ -182,7 +182,7 @@ private void ParseArguments(string[] argv)
}
else if (argv[i].Equals("-version"))
{
_migrateTo = int.Parse(argv[i+1]);
_migrateTo = long.Parse(argv[i+1]);
i++;
}
else if (argv[i].Equals("-dump"))
Expand Down

0 comments on commit fa3bd41

Please sign in to comment.