mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.PostgresMigrations.Migrations;
|
|||
|
|
|||
|
public partial class TdeAdminApproval : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<Guid>(
|
|||
|
name: "OrganizationId",
|
|||
|
table: "AuthRequest",
|
|||
|
type: "uuid",
|
|||
|
nullable: true);
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_AuthRequest_OrganizationId",
|
|||
|
table: "AuthRequest",
|
|||
|
column: "OrganizationId");
|
|||
|
|
|||
|
migrationBuilder.AddForeignKey(
|
|||
|
name: "FK_AuthRequest_Organization_OrganizationId",
|
|||
|
table: "AuthRequest",
|
|||
|
column: "OrganizationId",
|
|||
|
principalTable: "Organization",
|
|||
|
principalColumn: "Id");
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropForeignKey(
|
|||
|
name: "FK_AuthRequest_Organization_OrganizationId",
|
|||
|
table: "AuthRequest");
|
|||
|
|
|||
|
migrationBuilder.DropIndex(
|
|||
|
name: "IX_AuthRequest_OrganizationId",
|
|||
|
table: "AuthRequest");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "OrganizationId",
|
|||
|
table: "AuthRequest");
|
|||
|
}
|
|||
|
}
|