Skip to content

Commit

Permalink
fix: duplicate column name 'CoordinateLifetimeWithUserSession'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 15, 2022
1 parent 4ab25a2 commit 0499f5a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ public partial class NewClientOptions : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "CoordinateLifetimeWithUserSession",
table: "Clients",
nullable: true);

migrationBuilder.AddColumn<bool>(
name: "RequireRequestObject",
table: "Clients",
Expand Down Expand Up @@ -53,10 +48,6 @@ protected override void Down(MigrationBuilder migrationBuilder)
migrationBuilder.DropTable(
name: "ClientAllowedIdentityTokenSigningAlgorithm");

migrationBuilder.DropColumn(
name: "CoordinateLifetimeWithUserSession",
table: "Clients");

migrationBuilder.DropColumn(
name: "RequireRequestObject",
table: "Clients");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ public partial class NewClientOptions : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "CoordinateLifetimeWithUserSession",
table: "Clients",
type: "boolean",
nullable: true);

migrationBuilder.AddColumn<bool>(
name: "RequireRequestObject",
table: "Clients",
Expand Down Expand Up @@ -55,10 +49,6 @@ protected override void Down(MigrationBuilder migrationBuilder)
migrationBuilder.DropTable(
name: "ClientAllowedIdentityTokenSigningAlgorithms");

migrationBuilder.DropColumn(
name: "CoordinateLifetimeWithUserSession",
table: "Clients");

migrationBuilder.DropColumn(
name: "RequireRequestObject",
table: "Clients");
Expand Down

0 comments on commit 0499f5a

Please sign in to comment.