using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Lutra.Infrastructure.Sql.Migrations { /// public partial class AddPrijsInCentenCheckConstraint : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddCheckConstraint( name: "CK_Verspaketten_PrijsInCenten", table: "Verspaketten", sql: "\"PrijsInCenten\" IS NULL OR \"PrijsInCenten\" >= 0"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropCheckConstraint( name: "CK_Verspaketten_PrijsInCenten", table: "Verspaketten"); } } }