Fix missing semicolon after migration. (#26337)

Are you kidding me EFCore doesn't sanitize this itself?

(cherry picked from commit 4ad1e0598b1d1cc326e0752cff59c02ac878ed44)
This commit is contained in:
Pieter-Jan Briers 2024-03-22 16:50:55 +01:00 committed by NullWanderer
parent 7309e79f62
commit 9bb730d0bb
No known key found for this signature in database
GPG Key ID: 65CF92BD1D26F4AC
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ namespace Content.Server.Database.Migrations.Postgres
nullable: false,
defaultValue: false);
migrationBuilder.Sql("UPDATE admin_messages SET dismissed = seen");
migrationBuilder.Sql("UPDATE admin_messages SET dismissed = seen;");
migrationBuilder.AddCheckConstraint(
name: "NotDismissedAndSeen",

View File

@ -17,7 +17,7 @@ namespace Content.Server.Database.Migrations.Sqlite
nullable: false,
defaultValue: false);
migrationBuilder.Sql("UPDATE admin_messages SET dismissed = seen");
migrationBuilder.Sql("UPDATE admin_messages SET dismissed = seen;");
migrationBuilder.AddCheckConstraint(
name: "NotDismissedAndSeen",