mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Added Twitch view count logging
This commit is contained in:
38
KfChatDotNetBot/Migrations/20240815041430_TwitchViews.cs
Normal file
38
KfChatDotNetBot/Migrations/20240815041430_TwitchViews.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user