mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 02:08:32 +01:00
16 lines
443 B
C#
16 lines
443 B
C#
|
using BTCPayServer.Data;
|
||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
|
||
|
#nullable disable
|
||
|
|
||
|
namespace BTCPayServer.Migrations
|
||
|
{
|
||
|
[DbContext(typeof(ApplicationDbContext))]
|
||
|
[Migration("20240913034505_refactorpendinginvoicespayments")]
|
||
|
[DBScript("003.RefactorPendingInvoicesPayments.sql")]
|
||
|
public partial class refactorpendinginvoicespayments : DBScriptsMigration
|
||
|
{
|
||
|
}
|
||
|
}
|