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:
@ -0,0 +1,101 @@
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Data.Migrations.MySql
|
||||
{
|
||||
public partial class AddAutomatedOffenseAndRatingHistory : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "AutomatedOffense",
|
||||
table: "EFPenalties",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFClientRatingHistory",
|
||||
columns: table => new
|
||||
{
|
||||
RatingHistoryId = table.Column<int>(nullable: false)
|
||||
.Annotation("Sqlite:Autoincrement", true)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn)
|
||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
Active = table.Column<bool>(nullable: false),
|
||||
ClientId = table.Column<int>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFClientRatingHistory", x => x.RatingHistoryId);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFClientRatingHistory_EFClients_ClientId",
|
||||
column: x => x.ClientId,
|
||||
principalTable: "EFClients",
|
||||
principalColumn: "ClientId",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "EFRating",
|
||||
columns: table => new
|
||||
{
|
||||
RatingId = table.Column<int>(nullable: false)
|
||||
.Annotation("Sqlite:Autoincrement", true)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn)
|
||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
Active = table.Column<bool>(nullable: false),
|
||||
Newest = table.Column<bool>(nullable: false),
|
||||
Performance = table.Column<double>(nullable: false),
|
||||
Ranking = table.Column<int>(nullable: false),
|
||||
RatingHistoryId = table.Column<int>(nullable: false),
|
||||
ServerId = table.Column<int>(nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_EFRating", x => x.RatingId);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFRating_EFClientRatingHistory_RatingHistoryId",
|
||||
column: x => x.RatingHistoryId,
|
||||
principalTable: "EFClientRatingHistory",
|
||||
principalColumn: "RatingHistoryId",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_EFRating_EFServers_ServerId",
|
||||
column: x => x.ServerId,
|
||||
principalTable: "EFServers",
|
||||
principalColumn: "ServerId",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFClientRatingHistory_ClientId",
|
||||
table: "EFClientRatingHistory",
|
||||
column: "ClientId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFRating_RatingHistoryId",
|
||||
table: "EFRating",
|
||||
column: "RatingHistoryId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFRating_ServerId",
|
||||
table: "EFRating",
|
||||
column: "ServerId");
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFRating");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "EFClientRatingHistory");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AutomatedOffense",
|
||||
table: "EFPenalties");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user