mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using BTCPayServer.Data;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace BTCPayServer.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
[Migration("20201007090617_u2fDeviceCascade")]
|
|
public partial class u2fDeviceCascade : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_U2FDevices_AspNetUsers_ApplicationUserId",
|
|
table: "U2FDevices");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_U2FDevices_AspNetUsers_ApplicationUserId",
|
|
table: "U2FDevices",
|
|
column: "ApplicationUserId",
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_U2FDevices_AspNetUsers_ApplicationUserId",
|
|
table: "U2FDevices");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_U2FDevices_AspNetUsers_ApplicationUserId",
|
|
table: "U2FDevices",
|
|
column: "ApplicationUserId",
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
}
|
|
}
|
|
}
|