using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace StandManager.Infrastructure.Migrations { /// public partial class CodiceFiscaleSuDest : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CodiceFiscale", table: "Destinazione", type: "nvarchar(max)", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "Rid", table: "Destinazione", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CodiceFiscale", table: "Destinazione"); migrationBuilder.DropColumn( name: "Rid", table: "Destinazione"); } } }