30 lines
808 B
C#
30 lines
808 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace W542.GandalfReborn.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class ffffff : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropPrimaryKey(
|
|
name: "PK_TempInvokerContext",
|
|
schema: "gr",
|
|
table: "TempInvokerContext");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddPrimaryKey(
|
|
name: "PK_TempInvokerContext",
|
|
schema: "gr",
|
|
table: "TempInvokerContext",
|
|
column: "SubjectId");
|
|
}
|
|
}
|
|
}
|