diff --git a/src/Tgstation.Server.Host/Database/DatabaseContext.cs b/src/Tgstation.Server.Host/Database/DatabaseContext.cs
index 909f171e14..2681f8adb9 100644
--- a/src/Tgstation.Server.Host/Database/DatabaseContext.cs
+++ b/src/Tgstation.Server.Host/Database/DatabaseContext.cs
@@ -336,22 +336,22 @@ namespace Tgstation.Server.Host.Database
///
/// Used by unit tests to remind us to setup the correct MSSQL migration downgrades.
///
- public static readonly Type MSLatestMigration = typeof(MSAddAdditionalDDParameters);
+ public static readonly Type MSLatestMigration = typeof(MSGenericTestMergingUpdate);
///
- /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades.
+ /// Used by unit tests to remind us to setup the correct MYSQL migration downgrades.
///
- public static readonly Type MYLatestMigration = typeof(MYAddAdditionalDDParameters);
+ public static readonly Type MYLatestMigration = typeof(MYGenericTestMergingUpdate);
///
- /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades.
+ /// Used by unit tests to remind us to setup the correct PostgresSQL migration downgrades.
///
- public static readonly Type PGLatestMigration = typeof(PGAddAdditionalDDParameters);
+ public static readonly Type PGLatestMigration = typeof(PGGenericTestMergingUpdate);
///
- /// Used by unit tests to remind us to setup the correct MSSQL migration downgrades.
+ /// Used by unit tests to remind us to setup the correct SQLite migration downgrades.
///
- public static readonly Type SLLatestMigration = typeof(SLAddAdditionalDDParameters);
+ public static readonly Type SLLatestMigration = typeof(SLGenericTestMergingUpdate);
#endif
///