2017-05-27 23:51:22 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2017-03-18 19:23:26 +00:00
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Migrations
|
|
|
|
|
{
|
|
|
|
|
public partial class cradandcrdm : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "AutoDeleteTrigger",
|
|
|
|
|
table: "CustomReactions",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: false);
|
|
|
|
|
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "DmResponse",
|
|
|
|
|
table: "CustomReactions",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "AutoDeleteTrigger",
|
|
|
|
|
table: "CustomReactions");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "DmResponse",
|
|
|
|
|
table: "CustomReactions");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|