mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* Added notification type enum Added option type to entity * created migration files * made sprocs backward compatible * made sprocs backward compatible * Fixed linting * Altered table to require an optional taskId * formatted code * Added foreignkey * Formatted code * fixed order
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class AddOptionalNotifificationTaskId : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<Guid>(
|
|
name: "TaskId",
|
|
table: "Notification",
|
|
type: "uuid",
|
|
nullable: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Notification_TaskId",
|
|
table: "Notification",
|
|
column: "TaskId");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification",
|
|
column: "TaskId",
|
|
principalTable: "SecurityTask",
|
|
principalColumn: "Id");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_Notification_SecurityTask_TaskId",
|
|
table: "Notification");
|
|
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_Notification_TaskId",
|
|
table: "Notification");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "TaskId",
|
|
table: "Notification");
|
|
}
|
|
}
|