34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
#nullable disable
|
|||
|
|
|
|||
|
|
namespace Elecciones.Database.Migrations
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public partial class AddConfiguracionTable : Migration
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.CreateTable(
|
|||
|
|
name: "Configuraciones",
|
|||
|
|
columns: table => new
|
|||
|
|
{
|
|||
|
|
Clave = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
|
|||
|
|
Valor = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false)
|
|||
|
|
},
|
|||
|
|
constraints: table =>
|
|||
|
|
{
|
|||
|
|
table.PrimaryKey("PK_Configuraciones", x => x.Clave);
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropTable(
|
|||
|
|
name: "Configuraciones");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|