mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 03:16:46 +01:00
16 lines
393 B
C#
16 lines
393 B
C#
|
using BTCPayServer.Data;
|
||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
|
||
|
#nullable disable
|
||
|
|
||
|
namespace BTCPayServer.Migrations
|
||
|
{
|
||
|
[DbContext(typeof(ApplicationDbContext))]
|
||
|
[Migration("20240827034505_migratepayouts")]
|
||
|
[DBScript("002.RefactorPayouts.sql")]
|
||
|
public partial class migratepayouts : DBScriptsMigration
|
||
|
{
|
||
|
}
|
||
|
}
|