Ricerca del cliente su PIva

This commit is contained in:
2025-12-16 11:04:11 +01:00
parent 6db8c7b938
commit 0fe46a52ce
15 changed files with 2060 additions and 238 deletions

View File

@ -0,0 +1,40 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace StandManager.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class RinominatoGiornoPresenza : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "GiornoPresenzaAl",
table: "IscrizioneEvento");
migrationBuilder.RenameColumn(
name: "GiornoPresenzaDal",
table: "IscrizioneEvento",
newName: "GiornoPresenza");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "GiornoPresenza",
table: "IscrizioneEvento",
newName: "GiornoPresenzaDal");
migrationBuilder.AddColumn<DateTime>(
name: "GiornoPresenzaAl",
table: "IscrizioneEvento",
type: "datetime2",
nullable: false,
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
}
}
}