29 lines
785 B
C#
29 lines
785 B
C#
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);
|
|
}
|
|
}
|
|
}
|