2016-11-15 11:01:02 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2016-10-19 06:05:23 +00:00
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Migrations
|
|
|
|
|
{
|
|
|
|
|
public partial class MuteRoleName : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "MuteRoleName",
|
|
|
|
|
table: "GuildConfigs",
|
|
|
|
|
nullable: true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "MuteRoleName",
|
|
|
|
|
table: "GuildConfigs");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|