Files
Elecciones-2025/Elecciones-Web/src/Elecciones.Database/Migrations/20250901163521_RemoveLogoUrlFromAgrupacionPolitica.cs

29 lines
785 B
C#
Raw Normal View History

2025-09-01 14:04:40 -03:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Elecciones.Database.Migrations
{
/// <inheritdoc />
public partial class RemoveLogoUrlFromAgrupacionPolitica : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LogoUrl",
table: "AgrupacionesPoliticas");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "LogoUrl",
table: "AgrupacionesPoliticas",
type: "nvarchar(max)",
nullable: true);
}
}
}