Files
StandManager/StandManager.Infrastructure/Migrations/20251219074430_UtenteECapoarea.cs
2025-12-19 10:38:51 +01:00

30 lines
775 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace StandManager.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class UtenteECapoarea : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsCapoarea",
table: "Utente",
type: "bit",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsCapoarea",
table: "Utente");
}
}
}