Files
nadekobot/NadekoBot.Core/Migrations/20210320084029_cleanup-followed-streams.cs
2021-09-06 21:29:22 +02:00

18 lines
435 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace NadekoBot.Migrations
{
public partial class cleanupfollowedstreams : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql("DELETE FROM FollowedStream WHERE GuildConfigId is null");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}