//
using System;
using Data.MigrationContext;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
namespace Data.Migrations.Sqlite
{
[DbContext(typeof(SqliteDatabaseContext))]
[Migration("20210629021801_AddHitLocationReferenceToEFACSnapshot")]
partial class AddHitLocationReferenceToEFACSnapshot
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "3.1.10");
modelBuilder.Entity("Data.Models.Client.EFACSnapshotVector3", b =>
{
b.Property("ACSnapshotVector3Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("SnapshotId")
.HasColumnType("INTEGER");
b.Property("Vector3Id")
.HasColumnType("INTEGER");
b.HasKey("ACSnapshotVector3Id");
b.HasIndex("SnapshotId");
b.HasIndex("Vector3Id");
b.ToTable("EFACSnapshotVector3");
});
modelBuilder.Entity("Data.Models.Client.EFClient", b =>
{
b.Property("ClientId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("AliasLinkId")
.HasColumnType("INTEGER");
b.Property("Connections")
.HasColumnType("INTEGER");
b.Property("CurrentAliasId")
.HasColumnType("INTEGER");
b.Property("FirstConnection")
.HasColumnType("TEXT");
b.Property("LastConnection")
.HasColumnType("TEXT");
b.Property("Level")
.HasColumnType("INTEGER");
b.Property("Masked")
.HasColumnType("INTEGER");
b.Property("NetworkId")
.HasColumnType("INTEGER");
b.Property("Password")
.HasColumnType("TEXT");
b.Property("PasswordSalt")
.HasColumnType("TEXT");
b.Property("TotalConnectionTime")
.HasColumnType("INTEGER");
b.HasKey("ClientId");
b.HasIndex("AliasLinkId");
b.HasIndex("CurrentAliasId");
b.HasIndex("NetworkId")
.IsUnique();
b.ToTable("EFClients");
});
modelBuilder.Entity("Data.Models.Client.EFClientKill", b =>
{
b.Property("KillId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("AttackerId")
.HasColumnType("INTEGER");
b.Property("Damage")
.HasColumnType("INTEGER");
b.Property("DeathOriginVector3Id")
.HasColumnType("INTEGER");
b.Property("DeathType")
.HasColumnType("INTEGER");
b.Property("Fraction")
.HasColumnType("REAL");
b.Property("HitLoc")
.HasColumnType("INTEGER");
b.Property("IsKill")
.HasColumnType("INTEGER");
b.Property("KillOriginVector3Id")
.HasColumnType("INTEGER");
b.Property("Map")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("VictimId")
.HasColumnType("INTEGER");
b.Property("ViewAnglesVector3Id")
.HasColumnType("INTEGER");
b.Property("VisibilityPercentage")
.HasColumnType("REAL");
b.Property("Weapon")
.HasColumnType("INTEGER");
b.Property("WeaponReference")
.HasColumnType("TEXT");
b.Property("When")
.HasColumnType("TEXT");
b.HasKey("KillId");
b.HasIndex("AttackerId");
b.HasIndex("DeathOriginVector3Id");
b.HasIndex("KillOriginVector3Id");
b.HasIndex("ServerId");
b.HasIndex("VictimId");
b.HasIndex("ViewAnglesVector3Id");
b.ToTable("EFClientKills");
});
modelBuilder.Entity("Data.Models.Client.EFClientMessage", b =>
{
b.Property("MessageId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("Message")
.HasColumnType("TEXT");
b.Property("SentIngame")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("TimeSent")
.HasColumnType("TEXT");
b.HasKey("MessageId");
b.HasIndex("ClientId");
b.HasIndex("ServerId");
b.HasIndex("TimeSent");
b.ToTable("EFClientMessages");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFACSnapshot", b =>
{
b.Property("SnapshotId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("CurrentSessionLength")
.HasColumnType("INTEGER");
b.Property("CurrentStrain")
.HasColumnType("REAL");
b.Property("CurrentViewAngleId")
.HasColumnType("INTEGER");
b.Property("Deaths")
.HasColumnType("INTEGER");
b.Property("Distance")
.HasColumnType("REAL");
b.Property("EloRating")
.HasColumnType("REAL");
b.Property("HitDestinationId")
.HasColumnType("INTEGER");
b.Property("HitLocation")
.HasColumnType("INTEGER");
b.Property("HitLocationReference")
.HasColumnType("TEXT");
b.Property("HitOriginId")
.HasColumnType("INTEGER");
b.Property("HitType")
.HasColumnType("INTEGER");
b.Property("Hits")
.HasColumnType("INTEGER");
b.Property("Kills")
.HasColumnType("INTEGER");
b.Property("LastStrainAngleId")
.HasColumnType("INTEGER");
b.Property("RecoilOffset")
.HasColumnType("REAL");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("SessionAngleOffset")
.HasColumnType("REAL");
b.Property("SessionAverageSnapValue")
.HasColumnType("REAL");
b.Property("SessionSPM")
.HasColumnType("REAL");
b.Property("SessionScore")
.HasColumnType("INTEGER");
b.Property("SessionSnapHits")
.HasColumnType("INTEGER");
b.Property("StrainAngleBetween")
.HasColumnType("REAL");
b.Property("TimeSinceLastEvent")
.HasColumnType("INTEGER");
b.Property("WeaponId")
.HasColumnType("INTEGER");
b.Property("WeaponReference")
.HasColumnType("TEXT");
b.Property("When")
.HasColumnType("TEXT");
b.HasKey("SnapshotId");
b.HasIndex("ClientId");
b.HasIndex("CurrentViewAngleId");
b.HasIndex("HitDestinationId");
b.HasIndex("HitOriginId");
b.HasIndex("LastStrainAngleId");
b.HasIndex("ServerId");
b.ToTable("EFACSnapshot");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientHitStatistic", b =>
{
b.Property("ClientHitStatisticId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("DamageInflicted")
.HasColumnType("INTEGER");
b.Property("DamageReceived")
.HasColumnType("INTEGER");
b.Property("DeathCount")
.HasColumnType("INTEGER");
b.Property("HitCount")
.HasColumnType("INTEGER");
b.Property("HitLocationId")
.HasColumnType("INTEGER");
b.Property("KillCount")
.HasColumnType("INTEGER");
b.Property("MeansOfDeathId")
.HasColumnType("INTEGER");
b.Property("ReceivedHitCount")
.HasColumnType("INTEGER");
b.Property("Score")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("SuicideCount")
.HasColumnType("INTEGER");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.Property("UsageSeconds")
.HasColumnType("INTEGER");
b.Property("WeaponAttachmentComboId")
.HasColumnType("INTEGER");
b.Property("WeaponId")
.HasColumnType("INTEGER");
b.HasKey("ClientHitStatisticId");
b.HasIndex("ClientId");
b.HasIndex("HitLocationId");
b.HasIndex("MeansOfDeathId");
b.HasIndex("ServerId");
b.HasIndex("WeaponAttachmentComboId");
b.HasIndex("WeaponId");
b.ToTable("EFClientHitStatistics");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientRankingHistory", b =>
{
b.Property("ClientRankingHistoryId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Newest")
.HasColumnType("INTEGER");
b.Property("PerformanceMetric")
.HasColumnType("REAL");
b.Property("Ranking")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.Property("ZScore")
.HasColumnType("REAL");
b.HasKey("ClientRankingHistoryId");
b.HasIndex("ClientId");
b.HasIndex("Ranking");
b.HasIndex("ServerId");
b.HasIndex("UpdatedDateTime");
b.HasIndex("ZScore");
b.ToTable("EFClientRankingHistory");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientRatingHistory", b =>
{
b.Property("RatingHistoryId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.HasKey("RatingHistoryId");
b.HasIndex("ClientId");
b.ToTable("EFClientRatingHistory");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientStatistics", b =>
{
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("AverageSnapValue")
.HasColumnType("REAL");
b.Property("Deaths")
.HasColumnType("INTEGER");
b.Property("EloRating")
.HasColumnType("REAL");
b.Property("Kills")
.HasColumnType("INTEGER");
b.Property("MaxStrain")
.HasColumnType("REAL");
b.Property("RollingWeightedKDR")
.HasColumnType("REAL");
b.Property("SPM")
.HasColumnType("REAL");
b.Property("Skill")
.HasColumnType("REAL");
b.Property("SnapHitCount")
.HasColumnType("INTEGER");
b.Property("TimePlayed")
.HasColumnType("INTEGER");
b.Property("UpdatedAt")
.HasColumnType("TEXT");
b.Property("ZScore")
.HasColumnType("REAL");
b.HasKey("ClientId", "ServerId");
b.HasIndex("ServerId");
b.HasIndex("ZScore");
b.HasIndex("ClientId", "TimePlayed", "ZScore");
b.ToTable("EFClientStatistics");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFHitLocationCount", b =>
{
b.Property("HitLocationCountId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("EFClientStatisticsClientId")
.HasColumnName("EFClientStatisticsClientId")
.HasColumnType("INTEGER");
b.Property("EFClientStatisticsServerId")
.HasColumnName("EFClientStatisticsServerId")
.HasColumnType("INTEGER");
b.Property("HitCount")
.HasColumnType("INTEGER");
b.Property("HitOffsetAverage")
.HasColumnType("REAL");
b.Property("Location")
.HasColumnType("INTEGER");
b.Property("MaxAngleDistance")
.HasColumnType("REAL");
b.HasKey("HitLocationCountId");
b.HasIndex("EFClientStatisticsServerId");
b.HasIndex("EFClientStatisticsClientId", "EFClientStatisticsServerId");
b.ToTable("EFHitLocationCounts");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFRating", b =>
{
b.Property("RatingId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ActivityAmount")
.HasColumnType("INTEGER");
b.Property("Newest")
.HasColumnType("INTEGER");
b.Property("Performance")
.HasColumnType("REAL");
b.Property("Ranking")
.HasColumnType("INTEGER");
b.Property("RatingHistoryId")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("When")
.HasColumnType("TEXT");
b.HasKey("RatingId");
b.HasIndex("RatingHistoryId");
b.HasIndex("ServerId");
b.HasIndex("Performance", "Ranking", "When");
b.HasIndex("When", "ServerId", "Performance", "ActivityAmount");
b.ToTable("EFRating");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFHitLocation", b =>
{
b.Property("HitLocationId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("HitLocationId");
b.HasIndex("Name");
b.ToTable("EFHitLocations");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFMap", b =>
{
b.Property("MapId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("MapId");
b.ToTable("EFMaps");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFMeansOfDeath", b =>
{
b.Property("MeansOfDeathId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("MeansOfDeathId");
b.ToTable("EFMeansOfDeath");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFWeapon", b =>
{
b.Property("WeaponId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("WeaponId");
b.HasIndex("Name");
b.ToTable("EFWeapons");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFWeaponAttachment", b =>
{
b.Property("WeaponAttachmentId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("WeaponAttachmentId");
b.ToTable("EFWeaponAttachments");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFWeaponAttachmentCombo", b =>
{
b.Property("WeaponAttachmentComboId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Attachment1Id")
.HasColumnType("INTEGER");
b.Property("Attachment2Id")
.HasColumnType("INTEGER");
b.Property("Attachment3Id")
.HasColumnType("INTEGER");
b.Property("CreatedDateTime")
.HasColumnType("TEXT");
b.Property("Game")
.HasColumnType("INTEGER");
b.Property("UpdatedDateTime")
.HasColumnType("TEXT");
b.HasKey("WeaponAttachmentComboId");
b.HasIndex("Attachment1Id");
b.HasIndex("Attachment2Id");
b.HasIndex("Attachment3Id");
b.ToTable("EFWeaponAttachmentCombos");
});
modelBuilder.Entity("Data.Models.EFAlias", b =>
{
b.Property("AliasId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("DateAdded")
.HasColumnType("TEXT");
b.Property("IPAddress")
.HasColumnType("INTEGER");
b.Property("LinkId")
.HasColumnType("INTEGER");
b.Property("Name")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(24);
b.Property("SearchableName")
.HasColumnType("TEXT")
.HasMaxLength(24);
b.HasKey("AliasId");
b.HasIndex("IPAddress");
b.HasIndex("LinkId");
b.HasIndex("Name");
b.HasIndex("SearchableName");
b.HasIndex("Name", "IPAddress")
.IsUnique();
b.ToTable("EFAlias");
});
modelBuilder.Entity("Data.Models.EFAliasLink", b =>
{
b.Property("AliasLinkId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.HasKey("AliasLinkId");
b.ToTable("EFAliasLinks");
});
modelBuilder.Entity("Data.Models.EFChangeHistory", b =>
{
b.Property("ChangeHistoryId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("Comment")
.HasColumnType("TEXT")
.HasMaxLength(128);
b.Property("CurrentValue")
.HasColumnType("TEXT");
b.Property("ImpersonationEntityId")
.HasColumnType("INTEGER");
b.Property("OriginEntityId")
.HasColumnType("INTEGER");
b.Property("PreviousValue")
.HasColumnType("TEXT");
b.Property("TargetEntityId")
.HasColumnType("INTEGER");
b.Property("TimeChanged")
.HasColumnType("TEXT");
b.Property("TypeOfChange")
.HasColumnType("INTEGER");
b.HasKey("ChangeHistoryId");
b.ToTable("EFChangeHistory");
});
modelBuilder.Entity("Data.Models.EFMeta", b =>
{
b.Property("MetaId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ClientId")
.HasColumnType("INTEGER");
b.Property("Created")
.HasColumnType("TEXT");
b.Property("Extra")
.HasColumnType("TEXT");
b.Property("Key")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(32);
b.Property("LinkedMetaId")
.HasColumnType("INTEGER");
b.Property("Updated")
.HasColumnType("TEXT");
b.Property("Value")
.IsRequired()
.HasColumnType("TEXT");
b.HasKey("MetaId");
b.HasIndex("ClientId");
b.HasIndex("Key");
b.HasIndex("LinkedMetaId");
b.ToTable("EFMeta");
});
modelBuilder.Entity("Data.Models.EFPenalty", b =>
{
b.Property("PenaltyId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("AutomatedOffense")
.HasColumnType("TEXT");
b.Property("Expires")
.HasColumnType("TEXT");
b.Property("IsEvadedOffense")
.HasColumnType("INTEGER");
b.Property("LinkId")
.HasColumnType("INTEGER");
b.Property("OffenderId")
.HasColumnType("INTEGER");
b.Property("Offense")
.IsRequired()
.HasColumnType("TEXT");
b.Property("PunisherId")
.HasColumnType("INTEGER");
b.Property("Type")
.HasColumnType("INTEGER");
b.Property("When")
.HasColumnType("TEXT");
b.HasKey("PenaltyId");
b.HasIndex("LinkId");
b.HasIndex("OffenderId");
b.HasIndex("PunisherId");
b.ToTable("EFPenalties");
});
modelBuilder.Entity("Data.Models.Server.EFServer", b =>
{
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("EndPoint")
.HasColumnType("TEXT");
b.Property("GameName")
.HasColumnType("INTEGER");
b.Property("HostName")
.HasColumnType("TEXT");
b.Property("IsPasswordProtected")
.HasColumnType("INTEGER");
b.Property("Port")
.HasColumnType("INTEGER");
b.HasKey("ServerId");
b.ToTable("EFServers");
});
modelBuilder.Entity("Data.Models.Server.EFServerStatistics", b =>
{
b.Property("StatisticId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Active")
.HasColumnType("INTEGER");
b.Property("ServerId")
.HasColumnType("INTEGER");
b.Property("TotalKills")
.HasColumnType("INTEGER");
b.Property("TotalPlayTime")
.HasColumnType("INTEGER");
b.HasKey("StatisticId");
b.HasIndex("ServerId");
b.ToTable("EFServerStatistics");
});
modelBuilder.Entity("Data.Models.Vector3", b =>
{
b.Property("Vector3Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("X")
.HasColumnType("REAL");
b.Property("Y")
.HasColumnType("REAL");
b.Property("Z")
.HasColumnType("REAL");
b.HasKey("Vector3Id");
b.ToTable("Vector3");
});
modelBuilder.Entity("Data.Models.Client.EFACSnapshotVector3", b =>
{
b.HasOne("Data.Models.Client.Stats.EFACSnapshot", "Snapshot")
.WithMany("PredictedViewAngles")
.HasForeignKey("SnapshotId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "Vector")
.WithMany()
.HasForeignKey("Vector3Id")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.EFClient", b =>
{
b.HasOne("Data.Models.EFAliasLink", "AliasLink")
.WithMany()
.HasForeignKey("AliasLinkId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.EFAlias", "CurrentAlias")
.WithMany()
.HasForeignKey("CurrentAliasId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.EFClientKill", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Attacker")
.WithMany()
.HasForeignKey("AttackerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "DeathOrigin")
.WithMany()
.HasForeignKey("DeathOriginVector3Id");
b.HasOne("Data.Models.Vector3", "KillOrigin")
.WithMany()
.HasForeignKey("KillOriginVector3Id");
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Client.EFClient", "Victim")
.WithMany()
.HasForeignKey("VictimId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "ViewAngles")
.WithMany()
.HasForeignKey("ViewAnglesVector3Id");
});
modelBuilder.Entity("Data.Models.Client.EFClientMessage", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.Stats.EFACSnapshot", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "CurrentViewAngle")
.WithMany()
.HasForeignKey("CurrentViewAngleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "HitDestination")
.WithMany()
.HasForeignKey("HitDestinationId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "HitOrigin")
.WithMany()
.HasForeignKey("HitOriginId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Vector3", "LastStrainAngle")
.WithMany()
.HasForeignKey("LastStrainAngleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientHitStatistic", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Client.Stats.Reference.EFHitLocation", "HitLocation")
.WithMany()
.HasForeignKey("HitLocationId");
b.HasOne("Data.Models.Client.Stats.Reference.EFMeansOfDeath", "MeansOfDeath")
.WithMany()
.HasForeignKey("MeansOfDeathId");
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId");
b.HasOne("Data.Models.Client.Stats.Reference.EFWeaponAttachmentCombo", "WeaponAttachmentCombo")
.WithMany()
.HasForeignKey("WeaponAttachmentComboId");
b.HasOne("Data.Models.Client.Stats.Reference.EFWeapon", "Weapon")
.WithMany()
.HasForeignKey("WeaponId");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientRankingHistory", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId");
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientRatingHistory", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.Stats.EFClientStatistics", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("ClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.Stats.EFHitLocationCount", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany()
.HasForeignKey("EFClientStatisticsClientId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("EFClientStatisticsServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Client.Stats.EFClientStatistics", null)
.WithMany("HitLocations")
.HasForeignKey("EFClientStatisticsClientId", "EFClientStatisticsServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Client.Stats.EFRating", b =>
{
b.HasOne("Data.Models.Client.Stats.EFClientRatingHistory", "RatingHistory")
.WithMany("Ratings")
.HasForeignKey("RatingHistoryId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId");
});
modelBuilder.Entity("Data.Models.Client.Stats.Reference.EFWeaponAttachmentCombo", b =>
{
b.HasOne("Data.Models.Client.Stats.Reference.EFWeaponAttachment", "Attachment1")
.WithMany()
.HasForeignKey("Attachment1Id")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Client.Stats.Reference.EFWeaponAttachment", "Attachment2")
.WithMany()
.HasForeignKey("Attachment2Id");
b.HasOne("Data.Models.Client.Stats.Reference.EFWeaponAttachment", "Attachment3")
.WithMany()
.HasForeignKey("Attachment3Id");
});
modelBuilder.Entity("Data.Models.EFAlias", b =>
{
b.HasOne("Data.Models.EFAliasLink", "Link")
.WithMany("Children")
.HasForeignKey("LinkId")
.OnDelete(DeleteBehavior.Restrict)
.IsRequired();
});
modelBuilder.Entity("Data.Models.EFMeta", b =>
{
b.HasOne("Data.Models.Client.EFClient", "Client")
.WithMany("Meta")
.HasForeignKey("ClientId");
b.HasOne("Data.Models.EFMeta", "LinkedMeta")
.WithMany()
.HasForeignKey("LinkedMetaId")
.OnDelete(DeleteBehavior.SetNull);
});
modelBuilder.Entity("Data.Models.EFPenalty", b =>
{
b.HasOne("Data.Models.EFAliasLink", "Link")
.WithMany("ReceivedPenalties")
.HasForeignKey("LinkId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Data.Models.Client.EFClient", "Offender")
.WithMany("ReceivedPenalties")
.HasForeignKey("OffenderId")
.OnDelete(DeleteBehavior.Restrict)
.IsRequired();
b.HasOne("Data.Models.Client.EFClient", "Punisher")
.WithMany("AdministeredPenalties")
.HasForeignKey("PunisherId")
.OnDelete(DeleteBehavior.Restrict)
.IsRequired();
});
modelBuilder.Entity("Data.Models.Server.EFServerStatistics", b =>
{
b.HasOne("Data.Models.Server.EFServer", "Server")
.WithMany()
.HasForeignKey("ServerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
#pragma warning restore 612, 618
}
}
}