using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MiniMarket.Web.Migrations
{
///
public partial class AgregarDescuentoVentas : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Descuento",
table: "Ventas",
type: "decimal(18,2)",
nullable: false,
defaultValue: 0m);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Descuento",
table: "Ventas");
}
}
}