diff --git a/Content.Server.Database/Migrations/Postgres/20250506175123_TajaraToTajaran.cs b/Content.Server.Database/Migrations/Postgres/20250506175123_TajaraToTajaran.cs index 4600113f41..ff2245f413 100644 --- a/Content.Server.Database/Migrations/Postgres/20250506175123_TajaraToTajaran.cs +++ b/Content.Server.Database/Migrations/Postgres/20250506175123_TajaraToTajaran.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Migrations; #nullable disable @@ -10,13 +10,23 @@ namespace Content.Server.Database.Migrations.Postgres /// protected override void Up(MigrationBuilder migrationBuilder) { - + migrationBuilder.UpdateData( + table: "profile", + keyColumn: "species", + keyValue: "Tajara", + column: "species", + value: "Tajaran"); } /// protected override void Down(MigrationBuilder migrationBuilder) { - + migrationBuilder.UpdateData( + table: "profile", + keyColumn: "species", + keyValue: "Tajaran", + column: "species", + value: "Tajara"); } } }