// using System; using Bit.Infrastructure.EntityFramework.Repositories; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Bit.MySqlMigrations.Migrations { [DbContext(typeof(DatabaseContext))] partial class DatabaseContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("Relational:MaxIdentifierLength", 64) .HasAnnotation("ProductVersion", "5.0.12"); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Cipher", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("Attachments") .HasColumnType("longtext"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Data") .HasColumnType("longtext"); b.Property("DeletedDate") .HasColumnType("datetime(6)"); b.Property("Favorites") .HasColumnType("longtext"); b.Property("Folders") .HasColumnType("longtext"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("Reprompt") .HasColumnType("tinyint unsigned"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("UserId"); b.ToTable("Cipher"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Collection", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("ExternalId") .HasMaxLength(300) .HasColumnType("varchar(300)"); b.Property("Name") .HasColumnType("longtext"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("Collection"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionCipher", b => { b.Property("CollectionId") .HasColumnType("char(36)"); b.Property("CipherId") .HasColumnType("char(36)"); b.HasKey("CollectionId", "CipherId"); b.HasIndex("CipherId"); b.ToTable("CollectionCipher"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionGroup", b => { b.Property("CollectionId") .HasColumnType("char(36)"); b.Property("GroupId") .HasColumnType("char(36)"); b.Property("HidePasswords") .HasColumnType("tinyint(1)"); b.Property("ReadOnly") .HasColumnType("tinyint(1)"); b.HasKey("CollectionId", "GroupId"); b.HasIndex("GroupId"); b.ToTable("CollectionGroups"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionUser", b => { b.Property("CollectionId") .HasColumnType("char(36)"); b.Property("OrganizationUserId") .HasColumnType("char(36)"); b.Property("HidePasswords") .HasColumnType("tinyint(1)"); b.Property("ReadOnly") .HasColumnType("tinyint(1)"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("CollectionId", "OrganizationUserId"); b.HasIndex("OrganizationUserId"); b.HasIndex("UserId"); b.ToTable("CollectionUsers"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Device", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Identifier") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("Name") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("PushToken") .HasMaxLength(255) .HasColumnType("varchar(255)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("Device"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.EmergencyAccess", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Email") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("GranteeId") .HasColumnType("char(36)"); b.Property("GrantorId") .HasColumnType("char(36)"); b.Property("KeyEncrypted") .HasColumnType("longtext"); b.Property("LastNotificationDate") .HasColumnType("datetime(6)"); b.Property("RecoveryInitiatedDate") .HasColumnType("datetime(6)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Status") .HasColumnType("tinyint unsigned"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("WaitTimeDays") .HasColumnType("int"); b.HasKey("Id"); b.HasIndex("GranteeId"); b.HasIndex("GrantorId"); b.ToTable("EmergencyAccess"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Event", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("ActingUserId") .HasColumnType("char(36)"); b.Property("CipherId") .HasColumnType("char(36)"); b.Property("CollectionId") .HasColumnType("char(36)"); b.Property("Date") .HasColumnType("datetime(6)"); b.Property("DeviceType") .HasColumnType("tinyint unsigned"); b.Property("GroupId") .HasColumnType("char(36)"); b.Property("InstallationId") .HasColumnType("char(36)"); b.Property("IpAddress") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("OrganizationUserId") .HasColumnType("char(36)"); b.Property("PolicyId") .HasColumnType("char(36)"); b.Property("ProviderId") .HasColumnType("char(36)"); b.Property("ProviderOrganizationId") .HasColumnType("char(36)"); b.Property("ProviderUserId") .HasColumnType("char(36)"); b.Property("Type") .HasColumnType("int"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.ToTable("Event"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Folder", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Name") .HasColumnType("longtext"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("Folder"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Grant", b => { b.Property("Key") .HasMaxLength(200) .HasColumnType("varchar(200)"); b.Property("ClientId") .HasMaxLength(200) .HasColumnType("varchar(200)"); b.Property("ConsumedDate") .HasColumnType("datetime(6)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Data") .HasColumnType("longtext"); b.Property("Description") .HasMaxLength(200) .HasColumnType("varchar(200)"); b.Property("ExpirationDate") .HasColumnType("datetime(6)"); b.Property("SessionId") .HasMaxLength(100) .HasColumnType("varchar(100)"); b.Property("SubjectId") .HasMaxLength(200) .HasColumnType("varchar(200)"); b.Property("Type") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.HasKey("Key"); b.ToTable("Grant"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Group", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("AccessAll") .HasColumnType("tinyint(1)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("ExternalId") .HasMaxLength(300) .HasColumnType("varchar(300)"); b.Property("Name") .HasMaxLength(100) .HasColumnType("varchar(100)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("Group"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.GroupUser", b => { b.Property("GroupId") .HasColumnType("char(36)"); b.Property("OrganizationUserId") .HasColumnType("char(36)"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("GroupId", "OrganizationUserId"); b.HasIndex("OrganizationUserId"); b.HasIndex("UserId"); b.ToTable("GroupUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Installation", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Email") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("Key") .HasMaxLength(150) .HasColumnType("varchar(150)"); b.HasKey("Id"); b.ToTable("Installation"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Organization", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("BillingEmail") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("BusinessAddress1") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("BusinessAddress2") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("BusinessAddress3") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("BusinessCountry") .HasMaxLength(2) .HasColumnType("varchar(2)"); b.Property("BusinessName") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("BusinessTaxNumber") .HasMaxLength(30) .HasColumnType("varchar(30)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("ExpirationDate") .HasColumnType("datetime(6)"); b.Property("Gateway") .HasColumnType("tinyint unsigned"); b.Property("GatewayCustomerId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("GatewaySubscriptionId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("Identifier") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("LicenseKey") .HasMaxLength(100) .HasColumnType("varchar(100)"); b.Property("MaxAutoscaleSeats") .HasColumnType("int"); b.Property("MaxCollections") .HasColumnType("smallint"); b.Property("MaxStorageGb") .HasColumnType("smallint"); b.Property("Name") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("OwnersNotifiedOfAutoscaling") .HasColumnType("datetime(6)"); b.Property("Plan") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("PlanType") .HasColumnType("tinyint unsigned"); b.Property("PrivateKey") .HasColumnType("longtext"); b.Property("PublicKey") .HasColumnType("longtext"); b.Property("ReferenceData") .HasColumnType("longtext"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Seats") .HasColumnType("int"); b.Property("SelfHost") .HasColumnType("tinyint(1)"); b.Property("Storage") .HasColumnType("bigint"); b.Property("TwoFactorProviders") .HasColumnType("longtext"); b.Property("Use2fa") .HasColumnType("tinyint(1)"); b.Property("UseApi") .HasColumnType("tinyint(1)"); b.Property("UseDirectory") .HasColumnType("tinyint(1)"); b.Property("UseEvents") .HasColumnType("tinyint(1)"); b.Property("UseGroups") .HasColumnType("tinyint(1)"); b.Property("UseKeyConnector") .HasColumnType("tinyint(1)"); b.Property("UsePolicies") .HasColumnType("tinyint(1)"); b.Property("UseResetPassword") .HasColumnType("tinyint(1)"); b.Property("UseSso") .HasColumnType("tinyint(1)"); b.Property("UseTotp") .HasColumnType("tinyint(1)"); b.Property("UsersGetPremium") .HasColumnType("tinyint(1)"); b.HasKey("Id"); b.ToTable("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationApiKey", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("ApiKey") .HasMaxLength(30) .HasColumnType("varchar(30)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("OrganizationApiKey"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationConnection", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("Config") .HasColumnType("longtext"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("OrganizationConnection"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationSponsorship", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("FriendlyName") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("LastSyncDate") .HasColumnType("datetime(6)"); b.Property("OfferedToEmail") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("PlanSponsorshipType") .HasColumnType("tinyint unsigned"); b.Property("SponsoredOrganizationId") .HasColumnType("char(36)"); b.Property("SponsoringOrganizationId") .HasColumnType("char(36)"); b.Property("SponsoringOrganizationUserId") .HasColumnType("char(36)"); b.Property("ToDelete") .HasColumnType("tinyint(1)"); b.Property("ValidUntil") .HasColumnType("datetime(6)"); b.HasKey("Id"); b.HasIndex("SponsoredOrganizationId"); b.HasIndex("SponsoringOrganizationId"); b.ToTable("OrganizationSponsorship"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("AccessAll") .HasColumnType("tinyint(1)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Email") .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("ExternalId") .HasMaxLength(300) .HasColumnType("varchar(300)"); b.Property("Key") .HasColumnType("longtext"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("Permissions") .HasColumnType("longtext"); b.Property("ResetPasswordKey") .HasColumnType("longtext"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Status") .HasColumnType("tinyint unsigned"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("UserId"); b.ToTable("OrganizationUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Policy", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Data") .HasColumnType("longtext"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("Policy"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Provider", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("BillingEmail") .HasColumnType("longtext"); b.Property("BusinessAddress1") .HasColumnType("longtext"); b.Property("BusinessAddress2") .HasColumnType("longtext"); b.Property("BusinessAddress3") .HasColumnType("longtext"); b.Property("BusinessCountry") .HasColumnType("longtext"); b.Property("BusinessName") .HasColumnType("longtext"); b.Property("BusinessTaxNumber") .HasColumnType("longtext"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("Name") .HasColumnType("longtext"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Status") .HasColumnType("tinyint unsigned"); b.Property("UseEvents") .HasColumnType("tinyint(1)"); b.HasKey("Id"); b.ToTable("Provider"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.ProviderOrganization", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Key") .HasColumnType("longtext"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("ProviderId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Settings") .HasColumnType("longtext"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("ProviderId"); b.ToTable("ProviderOrganization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.ProviderUser", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Email") .HasColumnType("longtext"); b.Property("Key") .HasColumnType("longtext"); b.Property("Permissions") .HasColumnType("longtext"); b.Property("ProviderId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Status") .HasColumnType("tinyint unsigned"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("ProviderId"); b.HasIndex("UserId"); b.ToTable("ProviderUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Send", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("AccessCount") .HasColumnType("int"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Data") .HasColumnType("longtext"); b.Property("DeletionDate") .HasColumnType("datetime(6)"); b.Property("Disabled") .HasColumnType("tinyint(1)"); b.Property("ExpirationDate") .HasColumnType("datetime(6)"); b.Property("HideEmail") .HasColumnType("tinyint(1)"); b.Property("Key") .HasColumnType("longtext"); b.Property("MaxAccessCount") .HasColumnType("int"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("Password") .HasMaxLength(300) .HasColumnType("varchar(300)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("UserId"); b.ToTable("Send"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SsoConfig", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("bigint"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Data") .HasColumnType("longtext"); b.Property("Enabled") .HasColumnType("tinyint(1)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.ToTable("SsoConfig"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SsoUser", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("bigint"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("ExternalId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("UserId"); b.ToTable("SsoUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.TaxRate", b => { b.Property("Id") .HasMaxLength(40) .HasColumnType("varchar(40)"); b.Property("Active") .HasColumnType("tinyint(1)"); b.Property("Country") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("PostalCode") .HasMaxLength(10) .HasColumnType("varchar(10)"); b.Property("Rate") .HasColumnType("decimal(65,30)"); b.Property("State") .HasMaxLength(2) .HasColumnType("varchar(2)"); b.HasKey("Id"); b.ToTable("TaxRate"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Transaction", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("Amount") .HasColumnType("decimal(65,30)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Details") .HasMaxLength(100) .HasColumnType("varchar(100)"); b.Property("Gateway") .HasColumnType("tinyint unsigned"); b.Property("GatewayId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("OrganizationId") .HasColumnType("char(36)"); b.Property("PaymentMethodType") .HasColumnType("tinyint unsigned"); b.Property("Refunded") .HasColumnType("tinyint(1)"); b.Property("RefundedAmount") .HasColumnType("decimal(65,30)"); b.Property("Type") .HasColumnType("tinyint unsigned"); b.Property("UserId") .HasColumnType("char(36)"); b.HasKey("Id"); b.HasIndex("OrganizationId"); b.HasIndex("UserId"); b.ToTable("Transaction"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.User", b => { b.Property("Id") .HasColumnType("char(36)"); b.Property("AccountRevisionDate") .HasColumnType("datetime(6)"); b.Property("ApiKey") .IsRequired() .HasMaxLength(30) .HasColumnType("varchar(30)"); b.Property("CreationDate") .HasColumnType("datetime(6)"); b.Property("Culture") .HasMaxLength(10) .HasColumnType("varchar(10)"); b.Property("Email") .IsRequired() .HasMaxLength(256) .HasColumnType("varchar(256)"); b.Property("EmailVerified") .HasColumnType("tinyint(1)"); b.Property("EquivalentDomains") .HasColumnType("longtext"); b.Property("ExcludedGlobalEquivalentDomains") .HasColumnType("longtext"); b.Property("FailedLoginCount") .HasColumnType("int"); b.Property("ForcePasswordReset") .HasColumnType("tinyint(1)"); b.Property("Gateway") .HasColumnType("tinyint unsigned"); b.Property("GatewayCustomerId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("GatewaySubscriptionId") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("Kdf") .HasColumnType("tinyint unsigned"); b.Property("KdfIterations") .HasColumnType("int"); b.Property("Key") .HasColumnType("longtext"); b.Property("LastFailedLoginDate") .HasColumnType("datetime(6)"); b.Property("LicenseKey") .HasMaxLength(100) .HasColumnType("varchar(100)"); b.Property("MasterPassword") .HasMaxLength(300) .HasColumnType("varchar(300)"); b.Property("MasterPasswordHint") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("MaxStorageGb") .HasColumnType("smallint"); b.Property("Name") .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("Premium") .HasColumnType("tinyint(1)"); b.Property("PremiumExpirationDate") .HasColumnType("datetime(6)"); b.Property("PrivateKey") .HasColumnType("longtext"); b.Property("PublicKey") .HasColumnType("longtext"); b.Property("ReferenceData") .HasColumnType("longtext"); b.Property("RenewalReminderDate") .HasColumnType("datetime(6)"); b.Property("RevisionDate") .HasColumnType("datetime(6)"); b.Property("SecurityStamp") .IsRequired() .HasMaxLength(50) .HasColumnType("varchar(50)"); b.Property("Storage") .HasColumnType("bigint"); b.Property("TwoFactorProviders") .HasColumnType("longtext"); b.Property("TwoFactorRecoveryCode") .HasMaxLength(32) .HasColumnType("varchar(32)"); b.Property("UnknownDeviceVerificationEnabled") .HasColumnType("tinyint(1)"); b.Property("UsesKeyConnector") .HasColumnType("tinyint(1)"); b.HasKey("Id"); b.ToTable("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Cipher", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("Ciphers") .HasForeignKey("OrganizationId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany("Ciphers") .HasForeignKey("UserId"); b.Navigation("Organization"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Collection", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany() .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionCipher", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Cipher", "Cipher") .WithMany("CollectionCiphers") .HasForeignKey("CipherId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.Collection", "Collection") .WithMany("CollectionCiphers") .HasForeignKey("CollectionId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Cipher"); b.Navigation("Collection"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionGroup", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Collection", "Collection") .WithMany("CollectionGroups") .HasForeignKey("CollectionId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.Group", "Group") .WithMany() .HasForeignKey("GroupId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Collection"); b.Navigation("Group"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionUser", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Collection", "Collection") .WithMany("CollectionUsers") .HasForeignKey("CollectionId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", "OrganizationUser") .WithMany("CollectionUsers") .HasForeignKey("OrganizationUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", null) .WithMany("CollectionUsers") .HasForeignKey("UserId"); b.Navigation("Collection"); b.Navigation("OrganizationUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Device", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.EmergencyAccess", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "Grantee") .WithMany() .HasForeignKey("GranteeId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "Grantor") .WithMany() .HasForeignKey("GrantorId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Grantee"); b.Navigation("Grantor"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Folder", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany("Folders") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Group", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("Groups") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.GroupUser", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Group", "Group") .WithMany("GroupUsers") .HasForeignKey("GroupId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", "OrganizationUser") .WithMany() .HasForeignKey("OrganizationUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", null) .WithMany("GroupUsers") .HasForeignKey("UserId"); b.Navigation("Group"); b.Navigation("OrganizationUser"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationApiKey", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("ApiKeys") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationConnection", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("Connections") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationSponsorship", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "SponsoredOrganization") .WithMany() .HasForeignKey("SponsoredOrganizationId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "SponsoringOrganization") .WithMany() .HasForeignKey("SponsoringOrganizationId"); b.Navigation("SponsoredOrganization"); b.Navigation("SponsoringOrganization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("OrganizationUsers") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany("OrganizationUsers") .HasForeignKey("UserId"); b.Navigation("Organization"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Policy", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("Policies") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.ProviderOrganization", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany() .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.Provider", "Provider") .WithMany() .HasForeignKey("ProviderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); b.Navigation("Provider"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.ProviderUser", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Provider", "Provider") .WithMany() .HasForeignKey("ProviderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany() .HasForeignKey("UserId"); b.Navigation("Provider"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Send", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany() .HasForeignKey("OrganizationId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany() .HasForeignKey("UserId"); b.Navigation("Organization"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SsoConfig", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("SsoConfigs") .HasForeignKey("OrganizationId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.SsoUser", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("SsoUsers") .HasForeignKey("OrganizationId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany("SsoUsers") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Organization"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Transaction", b => { b.HasOne("Bit.Infrastructure.EntityFramework.Models.Organization", "Organization") .WithMany("Transactions") .HasForeignKey("OrganizationId"); b.HasOne("Bit.Infrastructure.EntityFramework.Models.User", "User") .WithMany("Transactions") .HasForeignKey("UserId"); b.Navigation("Organization"); b.Navigation("User"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Cipher", b => { b.Navigation("CollectionCiphers"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Collection", b => { b.Navigation("CollectionCiphers"); b.Navigation("CollectionGroups"); b.Navigation("CollectionUsers"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Group", b => { b.Navigation("GroupUsers"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Organization", b => { b.Navigation("ApiKeys"); b.Navigation("Ciphers"); b.Navigation("Connections"); b.Navigation("Groups"); b.Navigation("OrganizationUsers"); b.Navigation("Policies"); b.Navigation("SsoConfigs"); b.Navigation("SsoUsers"); b.Navigation("Transactions"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", b => { b.Navigation("CollectionUsers"); }); modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.User", b => { b.Navigation("Ciphers"); b.Navigation("CollectionUsers"); b.Navigation("Folders"); b.Navigation("GroupUsers"); b.Navigation("OrganizationUsers"); b.Navigation("SsoUsers"); b.Navigation("Transactions"); }); #pragma warning restore 612, 618 } } }