using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RR3CommunityServer.Migrations { /// public partial class AddAnalyticsTracking : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "AnalyticsEvents", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), EventType = table.Column(type: "TEXT", nullable: false), UserId = table.Column(type: "INTEGER", nullable: true), SessionId = table.Column(type: "TEXT", nullable: true), EventData = table.Column(type: "TEXT", nullable: false), Timestamp = table.Column(type: "TEXT", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AnalyticsEvents", x => x.Id); table.ForeignKey( name: "FK_AnalyticsEvents_Users_UserId", column: x => x.UserId, principalTable: "Users", principalColumn: "Id"); }); migrationBuilder.UpdateData( table: "TimeTrials", keyColumn: "Id", keyValue: 1, columns: new[] { "EndDate", "StartDate" }, values: new object[] { new DateTime(2026, 3, 3, 1, 0, 29, 89, DateTimeKind.Utc).AddTicks(3271), new DateTime(2026, 2, 24, 1, 0, 29, 89, DateTimeKind.Utc).AddTicks(3268) }); migrationBuilder.UpdateData( table: "TimeTrials", keyColumn: "Id", keyValue: 2, columns: new[] { "EndDate", "StartDate" }, values: new object[] { new DateTime(2026, 3, 3, 1, 0, 29, 89, DateTimeKind.Utc).AddTicks(3281), new DateTime(2026, 2, 24, 1, 0, 29, 89, DateTimeKind.Utc).AddTicks(3280) }); migrationBuilder.CreateIndex( name: "IX_AnalyticsEvents_UserId", table: "AnalyticsEvents", column: "UserId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "AnalyticsEvents"); migrationBuilder.UpdateData( table: "TimeTrials", keyColumn: "Id", keyValue: 1, columns: new[] { "EndDate", "StartDate" }, values: new object[] { new DateTime(2026, 3, 3, 0, 53, 48, 427, DateTimeKind.Utc).AddTicks(9290), new DateTime(2026, 2, 24, 0, 53, 48, 427, DateTimeKind.Utc).AddTicks(9287) }); migrationBuilder.UpdateData( table: "TimeTrials", keyColumn: "Id", keyValue: 2, columns: new[] { "EndDate", "StartDate" }, values: new object[] { new DateTime(2026, 3, 3, 0, 53, 48, 427, DateTimeKind.Utc).AddTicks(9297), new DateTime(2026, 2, 24, 0, 53, 48, 427, DateTimeKind.Utc).AddTicks(9296) }); } } }