Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrassia committed Dec 11, 2024
1 parent cfb75ae commit 11bc75f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions util/MsSqlMigratorUtility/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public int Execute(
[Option("no-transaction", Description = "Run without adding transaction per script or all scripts")]
bool noTransactionMigration = false
)
{
return MigrateDatabase(databaseConnectionString, repeatable, folderName, dryRun, noTransactionMigration) ? 0 : -1;
}
{
return MigrateDatabase(databaseConnectionString, repeatable, folderName, dryRun, noTransactionMigration) ? 0 : -1;
}


private static bool MigrateDatabase(string databaseConnectionString,
Expand Down

0 comments on commit 11bc75f

Please sign in to comment.