using System; using Knot.Modules.Auth.Infrastructure.Persistence; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace Knot.Modules.Auth.Migrations { /// [DbContext(typeof(AuthDbContext))] [Migration("20270419220000_AddRefreshTokenExpiry")] partial class AddRefreshTokenExpiry { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "10.0.0-rc.1.25451.105") .HasAnnotation("Relational:DefaultSchema", "identity"); modelBuilder.Entity("Knot.Modules.Auth.Domain.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uuid"); b.Property("Avatar") .HasColumnType("text"); b.Property("BannedUntil") .HasColumnType("timestamp with time zone"); b.Property("Bio") .HasColumnType("text"); b.Property("Birthday") .HasColumnType("timestamp with time zone") .IsRequired(false); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("DisplayName") .HasColumnType("text"); b.Property("Domain") .HasColumnType("text"); b.Property("Email") .HasColumnType("text"); b.Property("HideStatus") .HasColumnType("boolean"); b.Property("HideStoryViews") .HasColumnType("boolean"); b.Property("IsBanned") .HasColumnType("boolean"); b.Property("IsExternal") .HasColumnType("boolean"); b.Property("IsOnline") .HasColumnType("boolean"); b.Property("LastSeen") .HasColumnType("timestamp with time zone"); b.Property("PasswordHash") .HasColumnType("text"); b.Property("PhoneNumber") .HasColumnType("text"); b.Property("RefreshToken") .HasColumnType("text"); b.Property("RefreshTokenExpiry") .HasColumnType("timestamp with time zone"); b.Property("Username") .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("Username") .IsUnique(); b.ToTable("Users", "identity"); }); #pragma warning restore 612, 618 } } }