Added Twitch view count logging

This commit is contained in:
barelyprofessional
2024-08-15 16:45:02 +08:00
parent 18a50a757d
commit 82bf88afe7
6 changed files with 303 additions and 3 deletions

View File

@@ -0,0 +1,38 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace KfChatDotNetBot.Migrations
{
/// <inheritdoc />
public partial class TwitchViews : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "TwitchViewCounts",
columns: table => new
{
Id = table.Column<int>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
Topic = table.Column<string>(type: "TEXT", nullable: false),
ServerTime = table.Column<double>(type: "REAL", nullable: false),
Viewers = table.Column<int>(type: "INTEGER", nullable: false),
Time = table.Column<DateTimeOffset>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_TwitchViewCounts", x => x.Id);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "TwitchViewCounts");
}
}
}