mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
33 lines
960 B
C#
33 lines
960 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Content.Server.Database.Migrations.Sqlite
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class CorvaxVulpkaninToVulpkanin : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "profile",
|
|
keyColumn: "species",
|
|
keyValue: "CorvaxVulpkanin",
|
|
column: "species",
|
|
value: "Vulpkanin");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "profile",
|
|
keyColumn: "species",
|
|
keyValue: "Vulpkanin",
|
|
column: "species",
|
|
value: "CorvaxVulpkanin");
|
|
}
|
|
}
|
|
}
|