Swap these around again.
This commit is contained in:
parent
67202d27f7
commit
f41ca7fb7f
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ if(cts.IsCancellationRequested) return;
|
|||
if(args.Contains("--migrate-storage") || args.Contains("--convert-db")) {
|
||||
MariaDBStorage mariadb = new(logFactory.CreateLogger("mariadb"), MariaDBStorage.BuildConnectionString(config.ScopeTo("mariadb")));
|
||||
using SQLiteStorage sqlite = new(logFactory.CreateLogger("sqlite"), SQLiteStorage.BuildConnectionString(config.ScopeTo("sqlite"), false));
|
||||
await new StorageMigrator(logFactory.CreateLogger("migrate"), sqlite, mariadb).Migrate(cts.Token);
|
||||
await new StorageMigrator(logFactory.CreateLogger("migrate"), mariadb, sqlite).Migrate(cts.Token);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue