using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Elecciones.Database.Migrations { /// public partial class FixLogoCategoriaNullability : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CategoriaId", table: "LogosAgrupacionesCategorias", type: "int", nullable: false, defaultValue: 0, oldClrType: typeof(int), oldType: "int", oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CategoriaId", table: "LogosAgrupacionesCategorias", type: "int", nullable: true, oldClrType: typeof(int), oldType: "int"); } } }