using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace line_gestao_api.Migrations { /// public partial class AddResumoReservaTotalGeral : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "TotalGeralLinhasReserva", table: "ResumoReservaTotals", type: "integer", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "TotalGeralLinhasReserva", table: "ResumoReservaTotals"); } } }