line-gestao-api/Migrations/20260205151645_AddResumoRes...

29 lines
791 B
C#

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