Delta-v/Content.Server.Database/Migrations/Postgres/20260118084629_OrganMarking...

30 lines
784 B
C#

using System.Text.Json;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Postgres
{
/// <inheritdoc />
public partial class OrganMarkings : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<JsonDocument>(
name: "organ_markings",
table: "profile",
type: "jsonb",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "organ_markings",
table: "profile");
}
}
}