Files
wwdpublic/Content.Server.Database/Migrations/Postgres/20240127102028_Height.cs
2024-06-27 18:46:50 +01:00

41 lines
1.1 KiB
C#

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