From afa91ee461eafeb16b7cec77c8aa1050cedf509f Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 9 Jul 2020 23:44:35 -0400 Subject: [PATCH] Fix SQLite migration defaulting RequireDMApiValidation to false --- .../Database/Migrations/20200705163700_SLAllowNullDMApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Database/Migrations/20200705163700_SLAllowNullDMApi.cs b/src/Tgstation.Server.Host/Database/Migrations/20200705163700_SLAllowNullDMApi.cs index bde90ddb77..422cdcc5c5 100644 --- a/src/Tgstation.Server.Host/Database/Migrations/20200705163700_SLAllowNullDMApi.cs +++ b/src/Tgstation.Server.Host/Database/Migrations/20200705163700_SLAllowNullDMApi.cs @@ -19,7 +19,7 @@ namespace Tgstation.Server.Host.Database.Migrations name: "RequireDMApiValidation", table: "DreamMakerSettings", nullable: false, - defaultValue: false); + defaultValue: true); migrationBuilder.RenameTable( name: "CompileJobs",