mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
0f08d3e3a3
* 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
|
|
{
|
|
|
|
}
|
|
}
|