using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Lutra.Infrastructure.Sql.Migrations { /// public partial class AddAantalPersonenCheckConstraint : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddCheckConstraint( name: "CK_Verspaketten_AantalPersonen", table: "Verspaketten", sql: "\"AantalPersonen\" BETWEEN 1 AND 10"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropCheckConstraint( name: "CK_Verspaketten_AantalPersonen", table: "Verspaketten"); } } }