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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|