using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace W542.GandalfReborn.Data.Migrations { /// public partial class afwawfawf : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "TempInvokerContext", schema: "gr", columns: table => new { SubjectId = table.Column(type: "uuid", nullable: false) }, constraints: table => { table.PrimaryKey("PK_TempInvokerContext", x => x.SubjectId); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "TempInvokerContext", schema: "gr"); } } }