mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
cc2921d257
renamed RefreshToken in model to RefreshTokenHash - now we have a hash of token, not a token
772 lines
26 KiB
C#
772 lines
26 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Govor.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace Govor.Data.Migrations
|
|
{
|
|
[DbContext(typeof(GovorDbContext))]
|
|
partial class GovorDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.6")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.ChatGroup", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<Guid>("ImageId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<bool>("IsChannel")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsPrivate")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("ChatGroups");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Friendship", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("AddresseeId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RequesterId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AddresseeId");
|
|
|
|
b.HasIndex("RequesterId");
|
|
|
|
b.ToTable("Friendships");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupAdmins", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("GroupId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GroupId");
|
|
|
|
b.ToTable("GroupAdmins");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupInvitation", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<DateTime>("EndDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("GroupId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("InvitationCode")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<int>("MaxParticipants")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid>("UserMakerId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GroupId");
|
|
|
|
b.HasIndex("UserMakerId");
|
|
|
|
b.ToTable("GroupInvitations");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupMembership", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("GroupId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("InvitationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<bool>("IsBanned")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime>("MemberSince")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GroupId");
|
|
|
|
b.HasIndex("InvitationId");
|
|
|
|
b.ToTable("GroupMemberships");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Invitation", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("DateCreated")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("EndDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsAdmin")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("MaxParticipants")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Invitations");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.MediaFile", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("DateCreated")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("MediaType")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("MineType")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<Guid?>("OwnerId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("OwnerType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid>("UploaderId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Url")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("MediaFiles");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MediaAttachments", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("MediaFileId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("MessageId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("MediaFileId");
|
|
|
|
b.HasIndex("MessageId");
|
|
|
|
b.ToTable("MediaAttachments");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.Message", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("ChatGroupId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("EditedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("EncryptedContent")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsEdited")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<Guid?>("PrivateChatId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RecipientId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("RecipientType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid?>("ReplyToMessageId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("SenderId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("SentAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ChatGroupId");
|
|
|
|
b.HasIndex("PrivateChatId");
|
|
|
|
b.ToTable("Messages");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MessageReaction", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("MessageId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("ReactedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("ReactionCode")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.HasIndex("MessageId", "UserId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("MessageReactions");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MessageView", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("MessageId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("ViewedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("MessageId", "UserId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("MessageViews");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.PrivateChat", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("UserAId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("UserBId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("PrivateChats");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Admin", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("UserId");
|
|
|
|
b.ToTable("Admins");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.OneTimePreKey", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<bool>("IsUsed")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false);
|
|
|
|
b.Property<byte[]>("PublicKey")
|
|
.IsRequired()
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<DateTime>("UploadedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("UserCryptoSessionId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UploadedAt");
|
|
|
|
b.HasIndex("UserCryptoSessionId", "IsUsed");
|
|
|
|
b.ToTable("OneTimePreKeys");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.SignedPreKey", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<byte[]>("PublicSignedPreKey")
|
|
.IsRequired()
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<byte[]>("SignedPreKeySignature")
|
|
.IsRequired()
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<Guid>("UserCryptoSessionId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserCryptoSessionId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("SignedPreKeys");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.UserCryptoSession", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<byte[]>("PublicIdentityKey")
|
|
.IsRequired()
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<Guid>("UserSessionId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserSessionId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("UserCryptoSessions");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.User", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateOnly>("CreatedOn")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<Guid>("IconId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("InviteId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("Username")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime>("WasOnline")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("InviteId");
|
|
|
|
b.HasIndex("Username")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Users");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.UserSession", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("DeviceInfo")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<DateTime>("ExpiresAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsRevoked")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("RefreshTokenHash")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("UserSessions");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Friendship", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.User", "Addressee")
|
|
.WithMany("ReceivedFriendRequests")
|
|
.HasForeignKey("AddresseeId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Govor.Core.Models.Users.User", "Requester")
|
|
.WithMany("SentFriendRequests")
|
|
.HasForeignKey("RequesterId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Addressee");
|
|
|
|
b.Navigation("Requester");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupAdmins", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.ChatGroup", null)
|
|
.WithMany("Admins")
|
|
.HasForeignKey("GroupId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupInvitation", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.ChatGroup", null)
|
|
.WithMany("InviteCodes")
|
|
.HasForeignKey("GroupId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Govor.Core.Models.Users.User", "UserMaker")
|
|
.WithMany()
|
|
.HasForeignKey("UserMakerId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("UserMaker");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.GroupMembership", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.ChatGroup", null)
|
|
.WithMany("Members")
|
|
.HasForeignKey("GroupId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Govor.Core.Models.GroupInvitation", null)
|
|
.WithMany()
|
|
.HasForeignKey("InvitationId")
|
|
.OnDelete(DeleteBehavior.SetNull);
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MediaAttachments", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.MediaFile", "MediaFile")
|
|
.WithMany()
|
|
.HasForeignKey("MediaFileId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Govor.Core.Models.Messages.Message", "Message")
|
|
.WithMany("MediaAttachments")
|
|
.HasForeignKey("MessageId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("MediaFile");
|
|
|
|
b.Navigation("Message");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.Message", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.ChatGroup", null)
|
|
.WithMany("Messages")
|
|
.HasForeignKey("ChatGroupId");
|
|
|
|
b.HasOne("Govor.Core.Models.PrivateChat", null)
|
|
.WithMany("Messages")
|
|
.HasForeignKey("PrivateChatId");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MessageReaction", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Messages.Message", "Message")
|
|
.WithMany("Reactions")
|
|
.HasForeignKey("MessageId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Govor.Core.Models.Users.User", "User")
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Message");
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.MessageView", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Messages.Message", null)
|
|
.WithMany("MessageViews")
|
|
.HasForeignKey("MessageId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Admin", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.User", "User")
|
|
.WithOne()
|
|
.HasForeignKey("Govor.Core.Models.Users.Admin", "UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("User");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.OneTimePreKey", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.Crypto.UserCryptoSession", "UserCryptoSession")
|
|
.WithMany("OneTimePreKeys")
|
|
.HasForeignKey("UserCryptoSessionId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("UserCryptoSession");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.SignedPreKey", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.Crypto.UserCryptoSession", "UserCryptoSession")
|
|
.WithOne("SignedPreKey")
|
|
.HasForeignKey("Govor.Core.Models.Users.Crypto.SignedPreKey", "UserCryptoSessionId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("UserCryptoSession");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.UserCryptoSession", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.UserSession", "UserSession")
|
|
.WithOne("CryptoSession")
|
|
.HasForeignKey("Govor.Core.Models.Users.Crypto.UserCryptoSession", "UserSessionId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("UserSession");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.User", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Invitation", "Invite")
|
|
.WithMany("Users")
|
|
.HasForeignKey("InviteId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Invite");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.UserSession", b =>
|
|
{
|
|
b.HasOne("Govor.Core.Models.Users.User", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.ChatGroup", b =>
|
|
{
|
|
b.Navigation("Admins");
|
|
|
|
b.Navigation("InviteCodes");
|
|
|
|
b.Navigation("Members");
|
|
|
|
b.Navigation("Messages");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Invitation", b =>
|
|
{
|
|
b.Navigation("Users");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Messages.Message", b =>
|
|
{
|
|
b.Navigation("MediaAttachments");
|
|
|
|
b.Navigation("MessageViews");
|
|
|
|
b.Navigation("Reactions");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.PrivateChat", b =>
|
|
{
|
|
b.Navigation("Messages");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.Crypto.UserCryptoSession", b =>
|
|
{
|
|
b.Navigation("OneTimePreKeys");
|
|
|
|
b.Navigation("SignedPreKey")
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.User", b =>
|
|
{
|
|
b.Navigation("ReceivedFriendRequests");
|
|
|
|
b.Navigation("SentFriendRequests");
|
|
});
|
|
|
|
modelBuilder.Entity("Govor.Core.Models.Users.UserSession", b =>
|
|
{
|
|
b.Navigation("CryptoSession")
|
|
.IsRequired();
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|