// using System; using AliasServerDb; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace AliasServerDb.Migrations.SqliteMigrations { [DbContext(typeof(AliasServerDbContextSqlite))] [Migration("20240821164021_AddDataProtectionDatabaseTable")] partial class AddDataProtectionDatabaseTable { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "8.0.8") .HasAnnotation("Proxies:ChangeTracking", false) .HasAnnotation("Proxies:CheckEquality", false) .HasAnnotation("Proxies:LazyLoading", true); modelBuilder.Entity("AliasServerDb.AdminRole", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("ConcurrencyStamp") .HasColumnType("TEXT"); b.Property("Name") .HasColumnType("TEXT"); b.Property("NormalizedName") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("AdminRoles"); }); modelBuilder.Entity("AliasServerDb.AdminUser", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("AccessFailedCount") .HasColumnType("INTEGER"); b.Property("ConcurrencyStamp") .HasColumnType("TEXT"); b.Property("Email") .HasColumnType("TEXT"); b.Property("EmailConfirmed") .HasColumnType("INTEGER"); b.Property("LastPasswordChanged") .HasColumnType("TEXT"); b.Property("LockoutEnabled") .HasColumnType("INTEGER"); b.Property("LockoutEnd") .HasColumnType("TEXT"); b.Property("NormalizedEmail") .HasColumnType("TEXT"); b.Property("NormalizedUserName") .HasColumnType("TEXT"); b.Property("PasswordHash") .HasColumnType("TEXT"); b.Property("PhoneNumber") .HasColumnType("TEXT"); b.Property("PhoneNumberConfirmed") .HasColumnType("INTEGER"); b.Property("SecurityStamp") .HasColumnType("TEXT"); b.Property("TwoFactorEnabled") .HasColumnType("INTEGER"); b.Property("UserName") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("AdminUsers"); }); modelBuilder.Entity("AliasServerDb.AliasVaultRole", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("ConcurrencyStamp") .HasColumnType("TEXT"); b.Property("Name") .HasColumnType("TEXT"); b.Property("NormalizedName") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("AliasVaultRoles"); }); modelBuilder.Entity("AliasServerDb.AliasVaultUser", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("AccessFailedCount") .HasColumnType("INTEGER"); b.Property("ConcurrencyStamp") .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("Email") .HasColumnType("TEXT"); b.Property("EmailConfirmed") .HasColumnType("INTEGER"); b.Property("LockoutEnabled") .HasColumnType("INTEGER"); b.Property("LockoutEnd") .HasColumnType("TEXT"); b.Property("NormalizedEmail") .HasColumnType("TEXT"); b.Property("NormalizedUserName") .HasColumnType("TEXT"); b.Property("PasswordHash") .HasColumnType("TEXT"); b.Property("PhoneNumber") .HasColumnType("TEXT"); b.Property("PhoneNumberConfirmed") .HasColumnType("INTEGER"); b.Property("Salt") .IsRequired() .HasMaxLength(100) .HasColumnType("TEXT"); b.Property("SecurityStamp") .HasColumnType("TEXT"); b.Property("TwoFactorEnabled") .HasColumnType("INTEGER"); b.Property("UpdatedAt") .HasColumnType("TEXT"); b.Property("UserName") .HasColumnType("TEXT"); b.Property("Verifier") .IsRequired() .HasMaxLength(1000) .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("AliasVaultUsers"); }); modelBuilder.Entity("AliasServerDb.AliasVaultUserRefreshToken", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("DeviceIdentifier") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("ExpireDate") .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("UserId") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("Value") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("AliasVaultUserRefreshTokens"); }); modelBuilder.Entity("AliasServerDb.Email", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Date") .HasColumnType("TEXT"); b.Property("DateSystem") .HasColumnType("TEXT"); b.Property("EncryptedSymmetricKey") .IsRequired() .HasColumnType("TEXT"); b.Property("From") .IsRequired() .HasColumnType("TEXT"); b.Property("FromDomain") .IsRequired() .HasColumnType("TEXT"); b.Property("FromLocal") .IsRequired() .HasColumnType("TEXT"); b.Property("MessageHtml") .HasColumnType("TEXT"); b.Property("MessagePlain") .HasColumnType("TEXT"); b.Property("MessagePreview") .HasColumnType("TEXT"); b.Property("MessageSource") .IsRequired() .HasColumnType("TEXT"); b.Property("PushNotificationSent") .HasColumnType("INTEGER"); b.Property("Subject") .IsRequired() .HasColumnType("TEXT"); b.Property("To") .IsRequired() .HasColumnType("TEXT"); b.Property("ToDomain") .IsRequired() .HasColumnType("TEXT"); b.Property("ToLocal") .IsRequired() .HasColumnType("TEXT"); b.Property("UserEncryptionKeyId") .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("Visible") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("Date"); b.HasIndex("DateSystem"); b.HasIndex("PushNotificationSent"); b.HasIndex("ToLocal"); b.HasIndex("UserEncryptionKeyId"); b.HasIndex("Visible"); b.ToTable("Emails"); }); modelBuilder.Entity("AliasServerDb.EmailAttachment", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Bytes") .IsRequired() .HasColumnType("BLOB"); b.Property("Date") .HasColumnType("TEXT"); b.Property("EmailId") .HasColumnType("INTEGER"); b.Property("Filename") .IsRequired() .HasColumnType("TEXT"); b.Property("Filesize") .HasColumnType("INTEGER"); b.Property("MimeType") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("EmailId"); b.ToTable("EmailAttachments"); }); modelBuilder.Entity("AliasServerDb.Log", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Application") .IsRequired() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("Exception") .IsRequired() .HasColumnType("TEXT"); b.Property("Level") .IsRequired() .HasMaxLength(128) .HasColumnType("TEXT"); b.Property("LogEvent") .IsRequired() .HasColumnType("TEXT") .HasColumnName("LogEvent"); b.Property("Message") .IsRequired() .HasColumnType("TEXT"); b.Property("MessageTemplate") .IsRequired() .HasColumnType("TEXT"); b.Property("Properties") .IsRequired() .HasColumnType("TEXT"); b.Property("TimeStamp") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("Application"); b.HasIndex("TimeStamp"); b.ToTable("Logs", (string)null); }); modelBuilder.Entity("AliasServerDb.UserEmailClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Address") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("AddressDomain") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("AddressLocal") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("UpdatedAt") .HasColumnType("TEXT"); b.Property("UserId") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("Address") .IsUnique(); b.HasIndex("UserId"); b.ToTable("UserEmailClaims"); }); modelBuilder.Entity("AliasServerDb.UserEncryptionKey", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("IsPrimary") .HasColumnType("INTEGER"); b.Property("PublicKey") .IsRequired() .HasMaxLength(2000) .HasColumnType("TEXT"); b.Property("UpdatedAt") .HasColumnType("TEXT"); b.Property("UserId") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("UserEncryptionKeys"); }); modelBuilder.Entity("AliasServerDb.Vault", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CreatedAt") .HasColumnType("TEXT"); b.Property("FileSize") .HasColumnType("INTEGER"); b.Property("UpdatedAt") .HasColumnType("TEXT"); b.Property("UserId") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.Property("VaultBlob") .IsRequired() .HasColumnType("TEXT"); b.Property("Version") .IsRequired() .HasMaxLength(255) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("Vaults"); }); modelBuilder.Entity("AliasVault.WorkerStatus.Database.WorkerServiceStatus", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("CurrentStatus") .IsRequired() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("DesiredStatus") .IsRequired() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("Heartbeat") .HasColumnType("TEXT"); b.Property("ServiceName") .IsRequired() .HasMaxLength(255) .HasColumnType("varchar"); b.HasKey("Id"); b.ToTable("WorkerServiceStatuses"); }); modelBuilder.Entity("Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("FriendlyName") .HasColumnType("TEXT"); b.Property("Xml") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("DataProtectionKeys"); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("ClaimType") .HasColumnType("TEXT"); b.Property("ClaimValue") .HasColumnType("TEXT"); b.Property("RoleId") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("RoleClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("ClaimType") .HasColumnType("TEXT"); b.Property("ClaimValue") .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("UserClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => { b.Property("LoginProvider") .HasColumnType("TEXT"); b.Property("ProviderKey") .HasColumnType("TEXT"); b.Property("ProviderDisplayName") .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("LoginProvider", "ProviderKey"); b.ToTable("UserLogins", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => { b.Property("UserId") .HasColumnType("TEXT"); b.Property("RoleId") .HasColumnType("TEXT"); b.HasKey("UserId", "RoleId"); b.ToTable("UserRoles", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => { b.Property("UserId") .HasColumnType("TEXT"); b.Property("LoginProvider") .HasColumnType("TEXT"); b.Property("Name") .HasColumnType("TEXT"); b.Property("Value") .HasColumnType("TEXT"); b.HasKey("UserId", "LoginProvider", "Name"); b.ToTable("UserTokens", (string)null); }); modelBuilder.Entity("AliasServerDb.AliasVaultUserRefreshToken", b => { b.HasOne("AliasServerDb.AliasVaultUser", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("AliasServerDb.Email", b => { b.HasOne("AliasServerDb.UserEncryptionKey", "EncryptionKey") .WithMany("Emails") .HasForeignKey("UserEncryptionKeyId") .OnDelete(DeleteBehavior.NoAction) .IsRequired(); b.Navigation("EncryptionKey"); }); modelBuilder.Entity("AliasServerDb.EmailAttachment", b => { b.HasOne("AliasServerDb.Email", "Email") .WithMany("Attachments") .HasForeignKey("EmailId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Email"); }); modelBuilder.Entity("AliasServerDb.UserEmailClaim", b => { b.HasOne("AliasServerDb.AliasVaultUser", "User") .WithMany("EmailClaims") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("AliasServerDb.UserEncryptionKey", b => { b.HasOne("AliasServerDb.AliasVaultUser", "User") .WithMany("EncryptionKeys") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("AliasServerDb.Vault", b => { b.HasOne("AliasServerDb.AliasVaultUser", "User") .WithMany("Vaults") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("AliasServerDb.AliasVaultUser", b => { b.Navigation("EmailClaims"); b.Navigation("EncryptionKeys"); b.Navigation("Vaults"); }); modelBuilder.Entity("AliasServerDb.Email", b => { b.Navigation("Attachments"); }); modelBuilder.Entity("AliasServerDb.UserEncryptionKey", b => { b.Navigation("Emails"); }); #pragma warning restore 612, 618 } } }