45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
// <auto-generated />
|
|||
|
|
using System;
|
||
|
|
using FiscalOS.API.Data;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||
|
|
|
||
|
|
#nullable disable
|
||
|
|
|
||
|
|
namespace FiscalOS.API.Migrations
|
||
|
|
{
|
||
|
|
[DbContext(typeof(AppDbContext))]
|
||
|
|
partial class AppDbContextModelSnapshot : ModelSnapshot
|
||
|
|
{
|
||
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
||
|
|
{
|
||
|
|
#pragma warning disable 612, 618
|
||
|
|
modelBuilder.HasAnnotation("ProductVersion", "10.0.2");
|
||
|
|
|
||
|
|
modelBuilder.Entity("FiscalOS.API.Identity.RefreshToken", b =>
|
||
|
|
{
|
||
|
|
b.Property<Guid>("Id")
|
||
|
|
.ValueGeneratedOnAdd()
|
||
|
|
.HasColumnType("TEXT");
|
||
|
|
|
||
|
|
b.HasKey("Id");
|
||
|
|
|
||
|
|
b.ToTable("RefreshTokens");
|
||
|
|
});
|
||
|
|
|
||
|
|
modelBuilder.Entity("FiscalOS.API.Identity.User", b =>
|
||
|
|
{
|
||
|
|
b.Property<Guid>("Id")
|
||
|
|
.ValueGeneratedOnAdd()
|
||
|
|
.HasColumnType("TEXT");
|
||
|
|
|
||
|
|
b.HasKey("Id");
|
||
|
|
|
||
|
|
b.ToTable("Users");
|
||
|
|
});
|
||
|
|
#pragma warning restore 612, 618
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|