SCHALE.GameServer/SCHALE.Common/Migrations/20240522122813_EchelonDB_Co...

30 lines
797 B
C#
Raw Normal View History

2024-05-22 13:22:57 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace SCHALE.Common.Migrations
{
/// <inheritdoc />
public partial class EchelonDB_CombatStyleIndex : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "CombatStyleIndex",
table: "Echelons",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CombatStyleIndex",
table: "Echelons");
}
}
}