using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Webshop.Infrastructure.Migrations
{
///
public partial class shippingfix : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "MaxDeliveryDays",
table: "ShippingMethods",
type: "integer",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn(
name: "MinDeliveryDays",
table: "ShippingMethods",
type: "integer",
nullable: false,
defaultValue: 0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "MaxDeliveryDays",
table: "ShippingMethods");
migrationBuilder.DropColumn(
name: "MinDeliveryDays",
table: "ShippingMethods");
}
}
}