btcpayserver/BTCPayServer.Data/Migrations/20220518061525_invoice_created_idx.cs
2022-05-18 15:44:58 +09:00

28 lines
814 B
C#

using BTCPayServer.Data;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BTCPayServer.Migrations
{
[DbContext(typeof(ApplicationDbContext))]
[Migration("20220518061525_invoice_created_idx")]
public partial class invoice_created_idx : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateIndex(
name: "IX_Invoices_Created",
table: "Invoices",
column: "Created");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_Invoices_Created",
table: "Invoices");
}
}
}