arreglado tema de que fallaba poner varios detalles

This commit is contained in:
fedpo
2024-10-17 05:36:10 +01:00
parent 2c9aaee3f9
commit 4feb81f3a8
42 changed files with 1378 additions and 156 deletions

View File

@@ -0,0 +1,28 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Modelo.Migrations
{
/// <inheritdoc />
public partial class RefactorNombre : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "CantOriginal",
table: "Lotes",
newName: "CantRecibida");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "CantRecibida",
table: "Lotes",
newName: "CantOriginal");
}
}
}