using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PlaylistShared.Api.Data.Migrations { /// public partial class AddDataProtectionKeys : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "DataProtectionKeys", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), FriendlyName = table.Column(type: "nvarchar(max)", nullable: false), Xml = table.Column(type: "nvarchar(max)", nullable: true) }, constraints: table => { table.PrimaryKey("PK_DataProtectionKeys", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "DataProtectionKeys"); } } }