Files
wwdpublic/Content.Server.Database/Migrations/Postgres/20250710001741_AddMimeName.cs
Kutosss c2b1ec174c [ADD] "кличка для мима" (#676)
* кличка для мима

* Apply suggestions from code review

* Update Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs

* Update Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs

---------

Co-authored-by: Spatison <137375981+Spatison@users.noreply.github.com>
2025-07-23 10:38:47 +10:00

29 lines
741 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Postgres
{
/// <inheritdoc />
public partial class AddMimeName : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "mime_name",
table: "profile",
type: "text",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "mime_name",
table: "profile");
}
}
}