- Provincia in Destinazione

This commit is contained in:
2025-12-23 14:31:12 +01:00
parent 616c72cd5a
commit ea417dc09e
6 changed files with 1206 additions and 1 deletions

View File

@ -0,0 +1,28 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace StandManager.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class ProvinciaInDest : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Provincia",
table: "Destinazione",
type: "nvarchar(max)",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Provincia",
table: "Destinazione");
}
}
}