ASPTemplate/Migrations/20230407214043_3DA5B7D1-3C1E-496D-9A32-07EAFD2C09D7.cs
2023-04-08 12:48:27 +02:00

34 lines
971 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ASPTemplate.Migrations
{
/// <inheritdoc />
public partial class _3DA5B7D13C1E496D9A3207EAFD2C09D7 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Config",
columns: table => new
{
Key = table.Column<string>(type: "TEXT", nullable: false),
Value = table.Column<string>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Config", x => x.Key);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Config");
}
}
}