mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
#nullable disable
|
|||
|
|
|
|||
|
|
namespace Bit.PostgresMigrations.Migrations;
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public partial class SecurityTaskCascadeDelete : Migration
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropForeignKey(
|
|||
|
|
name: "FK_SecurityTask_Cipher_CipherId",
|
|||
|
|
table: "SecurityTask");
|
|||
|
|
|
|||
|
|
migrationBuilder.AddForeignKey(
|
|||
|
|
name: "FK_SecurityTask_Cipher_CipherId",
|
|||
|
|
table: "SecurityTask",
|
|||
|
|
column: "CipherId",
|
|||
|
|
principalTable: "Cipher",
|
|||
|
|
principalColumn: "Id",
|
|||
|
|
onDelete: ReferentialAction.Cascade);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropForeignKey(
|
|||
|
|
name: "FK_SecurityTask_Cipher_CipherId",
|
|||
|
|
table: "SecurityTask");
|
|||
|
|
|
|||
|
|
migrationBuilder.AddForeignKey(
|
|||
|
|
name: "FK_SecurityTask_Cipher_CipherId",
|
|||
|
|
table: "SecurityTask",
|
|||
|
|
column: "CipherId",
|
|||
|
|
principalTable: "Cipher",
|
|||
|
|
principalColumn: "Id");
|
|||
|
|
}
|
|||
|
|
}
|