Files
ss14-wega/Content.Server.Database/Migrations/Postgres/20251210191327_Height.cs
Zekins 8efe46213e Рост (#266)
* height

* big the biggest
2025-12-11 01:01:24 +03:00

30 lines
764 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Content.Server.Database.Migrations.Postgres
{
/// <inheritdoc />
public partial class Height : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<float>(
name: "height",
table: "profile",
type: "real",
nullable: false,
defaultValue: 0f);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "height",
table: "profile");
}
}
}