Files
MilkyShots/Lactose/Migrations/20260709111214_AddPersonProfileCropZoom.cs
T

29 lines
738 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Lactose.Migrations
{
/// <inheritdoc />
public partial class AddPersonProfileCropZoom : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<float>(
name: "ProfileCropZoom",
table: "People",
type: "real",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ProfileCropZoom",
table: "People");
}
}
}