mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
15 lines
393 B
C#
15 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
|
|
{
|
|
}
|
|
}
|