mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
53 lines
2.1 KiB
C#
53 lines
2.1 KiB
C#
using System;
|
|
using BTCPayServer.Data;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BTCPayServer.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
[Migration("20241029163147_AddingPendingTransactionsTable")]
|
|
public partial class AddingPendingTransactionsTable : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "PendingTransactions",
|
|
columns: table => new
|
|
{
|
|
TransactionId = table.Column<string>(type: "text", nullable: false),
|
|
CryptoCode = table.Column<string>(type: "text", nullable: false),
|
|
StoreId = table.Column<string>(type: "text", nullable: true),
|
|
Expiry = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
|
State = table.Column<int>(type: "integer", nullable: false),
|
|
OutpointsUsed = table.Column<string[]>(type: "text[]", nullable: true),
|
|
Blob2 = table.Column<string>(type: "JSONB", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_PendingTransactions", x => new { x.CryptoCode, x.TransactionId });
|
|
table.ForeignKey(
|
|
name: "FK_PendingTransactions_Stores_StoreId",
|
|
column: x => x.StoreId,
|
|
principalTable: "Stores",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_PendingTransactions_StoreId",
|
|
table: "PendingTransactions",
|
|
column: "StoreId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "PendingTransactions");
|
|
}
|
|
}
|
|
}
|