Skip to content

Commit b3a1bd3

Browse files
authored
Hotfixes (corvax-team#465)
1 parent c1cf651 commit b3a1bd3

File tree

10 files changed

+4634
-3
lines changed

10 files changed

+4634
-3
lines changed

Content.Server.Database/Migrations/Postgres/20260117224235_CorvaxVulpkaninToVulpkanin.Designer.cs

Lines changed: 2317 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
using Microsoft.EntityFrameworkCore.Migrations;
2+
3+
#nullable disable
4+
5+
namespace Content.Server.Database.Migrations.Postgres
6+
{
7+
/// <inheritdoc />
8+
public partial class CorvaxVulpkaninToVulpkanin : Migration
9+
{
10+
/// <inheritdoc />
11+
protected override void Up(MigrationBuilder migrationBuilder)
12+
{
13+
migrationBuilder.UpdateData(
14+
table: "profile",
15+
keyColumn: "species",
16+
keyValue: "CorvaxVulpkanin",
17+
column: "species",
18+
value: "Vulpkanin");
19+
}
20+
21+
/// <inheritdoc />
22+
protected override void Down(MigrationBuilder migrationBuilder)
23+
{
24+
migrationBuilder.UpdateData(
25+
table: "profile",
26+
keyColumn: "species",
27+
keyValue: "Vulpkanin",
28+
column: "species",
29+
value: "CorvaxVulpkanin");
30+
}
31+
}
32+
}

Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
2121
{
2222
#pragma warning disable 612, 618
2323
modelBuilder
24-
.HasAnnotation("ProductVersion", "9.0.1")
24+
.HasAnnotation("ProductVersion", "10.0.0")
2525
.HasAnnotation("Relational:MaxIdentifierLength", 63);
2626

2727
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);

0 commit comments

Comments
 (0)