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