//
using System;
using DXApp.TemplateKitProject.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable
namespace DXApp.TemplateKitProject.Migrations
{
[DbContext(typeof(AppDbContext))]
[Migration("20260527094043_AddResultFilePath")]
partial class AddResultFilePath
{
///
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "8.0.8")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("DXApp.TemplateKitProject.Models.ZugferdInvoice", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("BuyerName")
.HasColumnType("nvarchar(max)");
b.Property("CurrencyCode")
.HasColumnType("nvarchar(max)");
b.Property("Iban")
.HasColumnType("nvarchar(max)");
b.Property("ImportedAt")
.HasColumnType("datetime2");
b.Property("InvoiceDate")
.HasColumnType("datetime2");
b.Property("InvoiceNumber")
.HasColumnType("nvarchar(max)");
b.Property("RawXml")
.HasColumnType("nvarchar(max)");
b.Property("ResultFilePath")
.HasColumnType("nvarchar(max)");
b.Property("SellerName")
.HasColumnType("nvarchar(max)");
b.Property("SellerTaxId")
.HasColumnType("nvarchar(max)");
b.Property("SourceType")
.HasColumnType("nvarchar(max)");
b.Property("TaxAmount")
.HasColumnType("decimal(18,2)");
b.Property("TotalAmount")
.HasColumnType("decimal(18,2)");
b.HasKey("Id");
b.ToTable("ZugferdInvoices");
});
#pragma warning restore 612, 618
}
}
}