46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Pal.Client.Database;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pal.Client.Database.Migrations
|
|
{
|
|
[DbContext(typeof(PalClientContext))]
|
|
[Migration("20230216154417_AddImportHistory")]
|
|
partial class AddImportHistory
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder.HasAnnotation("ProductVersion", "7.0.3");
|
|
|
|
modelBuilder.Entity("Pal.Client.Database.ImportHistory", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("ExportedAt")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("ImportedAt")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("RemoteUrl")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Imports");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|