| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using Microsoft.EntityFrameworkCore.Migrations;
-
- #nullable disable
-
- namespace Diligent.WebAPI.Data.Migrations
- {
- public partial class DeleteBehaviorSetNull : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropForeignKey(
- name: "FK_SelectionProcesses_AspNetUsers_SchedulerId",
- table: "SelectionProcesses");
-
- migrationBuilder.AddForeignKey(
- name: "FK_SelectionProcesses_AspNetUsers_SchedulerId",
- table: "SelectionProcesses",
- column: "SchedulerId",
- principalTable: "AspNetUsers",
- principalColumn: "Id",
- onDelete: ReferentialAction.SetNull);
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropForeignKey(
- name: "FK_SelectionProcesses_AspNetUsers_SchedulerId",
- table: "SelectionProcesses");
-
- migrationBuilder.AddForeignKey(
- name: "FK_SelectionProcesses_AspNetUsers_SchedulerId",
- table: "SelectionProcesses",
- column: "SchedulerId",
- principalTable: "AspNetUsers",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- }
- }
- }
|