NadekoBot/NadekoBot.Core/Migrations/20161122100602_Greet and bye improved.cs

24 lines
675 B
C#
Raw Normal View History

2016-12-17 00:16:14 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
2016-11-22 10:42:26 +00:00
namespace NadekoBot.Migrations
{
public partial class Greetandbyeimproved : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "AutoDeleteByeMessagesTimer",
table: "GuildConfigs",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AutoDeleteByeMessagesTimer",
table: "GuildConfigs");
}
}
}