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