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:
parent
7309e79f62
commit
9bb730d0bb
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue