mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
64 lines
2.6 KiB
C#
64 lines
2.6 KiB
C#
using BTCPayServer.Data;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace BTCPayServer.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
[Migration("20190425081749_AddU2fDevices")]
|
|
public partial class AddU2fDevices : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
int? maxLength = this.IsMySql(migrationBuilder.ActiveProvider) ? (int?)255 : null;
|
|
if (this.SupportDropColumn(migrationBuilder.ActiveProvider))
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Facade",
|
|
table: "PairedSINData");
|
|
}
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "U2FDevices",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(nullable: false, maxLength: maxLength),
|
|
Name = table.Column<string>(nullable: true),
|
|
KeyHandle = table.Column<byte[]>(nullable: false),
|
|
PublicKey = table.Column<byte[]>(nullable: false),
|
|
AttestationCert = table.Column<byte[]>(nullable: false),
|
|
Counter = table.Column<int>(nullable: false),
|
|
ApplicationUserId = table.Column<string>(nullable: true, maxLength: maxLength)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_U2FDevices", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_U2FDevices_AspNetUsers_ApplicationUserId",
|
|
column: x => x.ApplicationUserId,
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_U2FDevices_ApplicationUserId",
|
|
table: "U2FDevices",
|
|
column: "ApplicationUserId");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "U2FDevices");
|
|
//if it did not support dropping it, then it is still here and re-adding it would throw
|
|
if (this.SupportDropColumn(migrationBuilder.ActiveProvider))
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Facade",
|
|
table: "PairedSINData",
|
|
nullable: true);
|
|
}
|
|
}
|
|
}
|
|
}
|