From afe459feb67374e10071b091138c3bf69ac63560 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 10 Nov 2016 23:46:41 +0100 Subject: [PATCH] More fixes to migration --- src/NadekoBot/Modules/Administration/Commands/Migration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/Migration.cs b/src/NadekoBot/Modules/Administration/Commands/Migration.cs index fb2f9c00..78814624 100644 --- a/src/NadekoBot/Modules/Administration/Commands/Migration.cs +++ b/src/NadekoBot/Modules/Administration/Commands/Migration.cs @@ -75,9 +75,9 @@ namespace NadekoBot.Modules.Administration MigrateDb0_9(uow); //NOW save it - botConfig.MigrationVersion = 1; _log.Warn("Writing to disc"); uow.Complete(); + botConfig.MigrationVersion = 1; } }