104 lines
3.4 KiB
C#
104 lines
3.4 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Knot.Modules.Auth.Infrastructure.Persistence;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace Knot.Modules.Auth.Migrations
|
|
{
|
|
[DbContext(typeof(AuthDbContext))]
|
|
partial class AuthDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasDefaultSchema("identity")
|
|
.HasAnnotation("ProductVersion", "10.0.4")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Knot.Modules.Auth.Domain.User", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Avatar")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("BannedUntil")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Bio")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("Birthday")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Domain")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Email")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("HideStatus")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("HideStoryViews")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsBanned")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsExternal")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsOnline")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("LastSeen")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("RefreshToken")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("UserDomain")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Username")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Username")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Users", "identity");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|