Added MariaDB -> SQLite conversion utility.

This commit is contained in:
flash 2025-04-28 19:22:31 +00:00
commit eae379e933
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
6 changed files with 82 additions and 18 deletions

View file

@ -10,7 +10,7 @@ public class SQLiteMigrations(ILogger logger, SQLiteConnection conn) {
async Task doMigration(int expect, Func<Task> action) {
if(version < expect) {
logger.ZLogInformation($"Upgrading to version {version}...");
logger.ZLogInformation($"Upgrading to version {version + 1}...");
await action();
++version;
}