btcpayserver/BTCPayServer.Data/Migrations/20200225133433_AddApiKeyLabel.cs
Nicolas Dorier 0f08d3e3a3
Remove migrations prior to 1.0.3.162 (#5939)
* Consolidate EF migrations up to 03/2020 into a single SQL script

* Remove old migrations code
2024-04-25 14:09:21 +09:00

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
{
}
}