Files
nadekobot/NadekoBot.Core/Migrations/20210616195818_xp-remove-role-reward.cs
2021-09-06 21:29:22 +02:00

24 lines
639 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace NadekoBot.Migrations
{
public partial class xpremoverolereward : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "Remove",
table: "XpRoleReward",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Remove",
table: "XpRoleReward");
}
}
}