using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Elecciones.Database.Migrations
{
///
public partial class AddCategoriaIdToProyeccionesBancas : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_ProyeccionesBancas_AmbitoGeograficoId",
table: "ProyeccionesBancas");
migrationBuilder.AddColumn(
name: "CategoriaId",
table: "ProyeccionesBancas",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.CreateIndex(
name: "IX_ProyeccionesBancas_AmbitoGeograficoId_CategoriaId_AgrupacionPoliticaId",
table: "ProyeccionesBancas",
columns: new[] { "AmbitoGeograficoId", "CategoriaId", "AgrupacionPoliticaId" },
unique: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_ProyeccionesBancas_AmbitoGeograficoId_CategoriaId_AgrupacionPoliticaId",
table: "ProyeccionesBancas");
migrationBuilder.DropColumn(
name: "CategoriaId",
table: "ProyeccionesBancas");
migrationBuilder.CreateIndex(
name: "IX_ProyeccionesBancas_AmbitoGeograficoId",
table: "ProyeccionesBancas",
column: "AmbitoGeograficoId");
}
}
}