Browse Source

chore: run `dotnet format` (#5137)

pull/5136/head
Addison Beck 1 year ago committed by GitHub
parent
commit
2d257dc274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      util/MsSqlMigratorUtility/Program.cs

6
util/MsSqlMigratorUtility/Program.cs

@ -21,9 +21,9 @@ internal class Program @@ -21,9 +21,9 @@ internal class Program
[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,

Loading…
Cancel
Save