2016-11-15 12:01:02 +01:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2016-10-19 08:05:23 +02: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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|