//
// 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 StorageLimitPerCharacter : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "StorageLimitPerCharacter",
schema: "config",
table: "ItemDefinition",
type: "integer",
nullable: false,
defaultValue: 0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "StorageLimitPerCharacter",
schema: "config",
table: "ItemDefinition");
}
}
}