//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
#nullable disable
namespace MUnique.OpenMU.Persistence.EntityFramework.Migrations
{
using Microsoft.EntityFrameworkCore.Migrations;
///
public partial class AddAccountIsBot : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "IsBot",
schema: "data",
table: "Account",
type: "boolean",
nullable: false,
defaultValue: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsBot",
schema: "data",
table: "Account");
}
}
}