mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 22:15:10 -05:00

* add cascade deletion for cipher tasks * add migrations for cascade delete on ciphers and security tasks * remove trailing comma * add SQL migration for PasswordHealthReportApplication - Allow cascade delete when an organization is deleted
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class NotificationCascadeDelete : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification",
|
|
column: "TaskId",
|
|
principalTable: "SecurityTask",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification",
|
|
column: "TaskId",
|
|
principalTable: "SecurityTask",
|
|
principalColumn: "Id");
|
|
}
|
|
}
|