Files
nadekobot/NadekoBot.Core/Migrations/20180806115447_repeater-last-messageid.cs
2021-09-06 21:29:22 +02:00

23 lines
621 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace NadekoBot.Migrations
{
public partial class repeaterlastmessageid : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<ulong>(
name: "LastMessageId",
table: "GuildRepeater",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LastMessageId",
table: "GuildRepeater");
}
}
}