using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace NetinaShop.Repository.Migrations
{
///
public partial class EditOrderAddProductDiscount : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "DiscountCodePrice",
schema: "public",
table: "Orders",
type: "double precision",
nullable: false,
defaultValue: 0.0);
migrationBuilder.AddColumn(
name: "ProductDiscountPrice",
schema: "public",
table: "Orders",
type: "double precision",
nullable: false,
defaultValue: 0.0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DiscountCodePrice",
schema: "public",
table: "Orders");
migrationBuilder.DropColumn(
name: "ProductDiscountPrice",
schema: "public",
table: "Orders");
}
}
}