using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MiniMarket.Web.Migrations { /// public partial class AgregarEstadoMetodoPagoMotivo : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Estado", table: "Ventas", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "MetodoPago", table: "Ventas", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Motivo", table: "MovimientosInventario", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Estado", table: "Ventas"); migrationBuilder.DropColumn( name: "MetodoPago", table: "Ventas"); migrationBuilder.DropColumn( name: "Motivo", table: "MovimientosInventario"); } } }