mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
huge commit for advanced stats feature.
broke data out into its own library. may be breaking changes with existing plugins
This commit is contained in:
391
Data/Migrations/Postgresql/20210316004759_AddAdvancedStats.cs
Normal file
391
Data/Migrations/Postgresql/20210316004759_AddAdvancedStats.cs
Normal file
@ -0,0 +1,391 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
|
||||
namespace Data.Migrations.Postgresql
|
||||
{
|
||||
public partial class AddAdvancedStats : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AverageRecoilOffset",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "VisionAverage",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.AddColumn<DateTime>(
|
||||
name: "UpdatedAt",
|
||||
table: "EFClientStatistics",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "ZScore",
|
||||
table: "EFClientStatistics",
|
||||
nullable: false,
|
||||
defaultValue: 0.0);
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFClientRankingHistory",
|
||||
columns: table => new
|
||||
{
|
||||
ClientRankingHistoryId = table.Column<long>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
ClientId = table.Column<int>(nullable: false),
|
||||
ServerId = table.Column<long>(nullable: true),
|
||||
Newest = table.Column<bool>(nullable: false),
|
||||
Ranking = table.Column<int>(nullable: true),
|
||||
ZScore = table.Column<double>(nullable: true),
|
||||
PerformanceMetric = table.Column<double>(nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFClientRankingHistory", x => x.ClientRankingHistoryId);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientRankingHistory_EFClients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "EFClients",
|
||||
principalColumn: "ClientId",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientRankingHistory_EFServers_ServerId",
|
||||
column: x => x.ServerId,
|
||||
principalTable: "EFServers",
|
||||
principalColumn: "ServerId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFHitLocations",
|
||||
columns: table => new
|
||||
{
|
||||
HitLocationId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Name = table.Column<string>(nullable: false),
|
||||
Game = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFHitLocations", x => x.HitLocationId);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFMaps",
|
||||
columns: table => new
|
||||
{
|
||||
MapId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Name = table.Column<string>(nullable: false),
|
||||
Game = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFMaps", x => x.MapId);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFMeansOfDeath",
|
||||
columns: table => new
|
||||
{
|
||||
MeansOfDeathId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Name = table.Column<string>(nullable: false),
|
||||
Game = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFMeansOfDeath", x => x.MeansOfDeathId);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFWeaponAttachments",
|
||||
columns: table => new
|
||||
{
|
||||
WeaponAttachmentId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Name = table.Column<string>(nullable: false),
|
||||
Game = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFWeaponAttachments", x => x.WeaponAttachmentId);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFWeapons",
|
||||
columns: table => new
|
||||
{
|
||||
WeaponId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Name = table.Column<string>(nullable: false),
|
||||
Game = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFWeapons", x => x.WeaponId);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFWeaponAttachmentCombos",
|
||||
columns: table => new
|
||||
{
|
||||
WeaponAttachmentComboId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
Game = table.Column<int>(nullable: false),
|
||||
Attachment1Id = table.Column<int>(nullable: false),
|
||||
Attachment2Id = table.Column<int>(nullable: true),
|
||||
Attachment3Id = table.Column<int>(nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFWeaponAttachmentCombos", x => x.WeaponAttachmentComboId);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFWeaponAttachmentCombos_EFWeaponAttachments_Attachment1Id",
|
||||
column: x => x.Attachment1Id,
|
||||
principalTable: "EFWeaponAttachments",
|
||||
principalColumn: "WeaponAttachmentId",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFWeaponAttachmentCombos_EFWeaponAttachments_Attachment2Id",
|
||||
column: x => x.Attachment2Id,
|
||||
principalTable: "EFWeaponAttachments",
|
||||
principalColumn: "WeaponAttachmentId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFWeaponAttachmentCombos_EFWeaponAttachments_Attachment3Id",
|
||||
column: x => x.Attachment3Id,
|
||||
principalTable: "EFWeaponAttachments",
|
||||
principalColumn: "WeaponAttachmentId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFClientHitStatistics",
|
||||
columns: table => new
|
||||
{
|
||||
ClientHitStatisticId = table.Column<int>(nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn),
|
||||
CreatedDateTime = table.Column<DateTime>(nullable: false),
|
||||
UpdatedDateTime = table.Column<DateTime>(nullable: true),
|
||||
ClientId = table.Column<int>(nullable: false),
|
||||
ServerId = table.Column<long>(nullable: true),
|
||||
HitLocationId = table.Column<int>(nullable: true),
|
||||
MeansOfDeathId = table.Column<int>(nullable: true),
|
||||
WeaponId = table.Column<int>(nullable: true),
|
||||
WeaponAttachmentComboId = table.Column<int>(nullable: true),
|
||||
HitCount = table.Column<int>(nullable: false),
|
||||
KillCount = table.Column<int>(nullable: false),
|
||||
DamageInflicted = table.Column<int>(nullable: false),
|
||||
ReceivedHitCount = table.Column<int>(nullable: false),
|
||||
DeathCount = table.Column<int>(nullable: false),
|
||||
DamageReceived = table.Column<int>(nullable: false),
|
||||
SuicideCount = table.Column<int>(nullable: false),
|
||||
UsageSeconds = table.Column<int>(nullable: true),
|
||||
Score = table.Column<int>(nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFClientHitStatistics", x => x.ClientHitStatisticId);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFClients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "EFClients",
|
||||
principalColumn: "ClientId",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFHitLocations_HitLocationId",
|
||||
column: x => x.HitLocationId,
|
||||
principalTable: "EFHitLocations",
|
||||
principalColumn: "HitLocationId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFMeansOfDeath_MeansOfDeathId",
|
||||
column: x => x.MeansOfDeathId,
|
||||
principalTable: "EFMeansOfDeath",
|
||||
principalColumn: "MeansOfDeathId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFServers_ServerId",
|
||||
column: x => x.ServerId,
|
||||
principalTable: "EFServers",
|
||||
principalColumn: "ServerId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFWeaponAttachmentCombos_WeaponAttach~",
|
||||
column: x => x.WeaponAttachmentComboId,
|
||||
principalTable: "EFWeaponAttachmentCombos",
|
||||
principalColumn: "WeaponAttachmentComboId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientHitStatistics_EFWeapons_WeaponId",
|
||||
column: x => x.WeaponId,
|
||||
principalTable: "EFWeapons",
|
||||
principalColumn: "WeaponId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientStatistics_ZScore",
|
||||
table: "EFClientStatistics",
|
||||
column: "ZScore");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientStatistics_ClientId_TimePlayed_ZScore",
|
||||
table: "EFClientStatistics",
|
||||
columns: new[] { "ClientId", "TimePlayed", "ZScore" });
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_ClientId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_HitLocationId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "HitLocationId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_MeansOfDeathId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "MeansOfDeathId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_ServerId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "ServerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_WeaponAttachmentComboId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "WeaponAttachmentComboId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientHitStatistics_WeaponId",
|
||||
table: "EFClientHitStatistics",
|
||||
column: "WeaponId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRankingHistory_ClientId",
|
||||
table: "EFClientRankingHistory",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRankingHistory_Ranking",
|
||||
table: "EFClientRankingHistory",
|
||||
column: "Ranking");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRankingHistory_ServerId",
|
||||
table: "EFClientRankingHistory",
|
||||
column: "ServerId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRankingHistory_UpdatedDateTime",
|
||||
table: "EFClientRankingHistory",
|
||||
column: "UpdatedDateTime");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRankingHistory_ZScore",
|
||||
table: "EFClientRankingHistory",
|
||||
column: "ZScore");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFHitLocations_Name",
|
||||
table: "EFHitLocations",
|
||||
column: "Name");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFWeaponAttachmentCombos_Attachment1Id",
|
||||
table: "EFWeaponAttachmentCombos",
|
||||
column: "Attachment1Id");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFWeaponAttachmentCombos_Attachment2Id",
|
||||
table: "EFWeaponAttachmentCombos",
|
||||
column: "Attachment2Id");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFWeaponAttachmentCombos_Attachment3Id",
|
||||
table: "EFWeaponAttachmentCombos",
|
||||
column: "Attachment3Id");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFWeapons_Name",
|
||||
table: "EFWeapons",
|
||||
column: "Name");
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFClientHitStatistics");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFClientRankingHistory");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFMaps");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFHitLocations");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFMeansOfDeath");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFWeaponAttachmentCombos");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFWeapons");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFWeaponAttachments");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_EFClientStatistics_ZScore",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_EFClientStatistics_ClientId_TimePlayed_ZScore",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "UpdatedAt",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "ZScore",
|
||||
table: "EFClientStatistics");
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "AverageRecoilOffset",
|
||||
table: "EFClientStatistics",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0);
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "VisionAverage",
|
||||
table: "EFClientStatistics",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
defaultValue: 0.0);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user