mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 21:24:21 +01:00
* Consolidate EF migrations up to 03/2020 into a single SQL script * Remove old migrations code
15 lines
364 B
C#
15 lines
364 B
C#
using BTCPayServer.Data;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace BTCPayServer.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
[Migration("20200225133433_AddApiKeyLabel")]
|
|
[DBScript("000.Init.sql")]
|
|
public partial class AddApiKeyLabel : DBScriptsMigration
|
|
{
|
|
|
|
}
|
|
}
|