SCHALE.GameServer/SCHALE.Common/Migrations/SqlServerMigrations/20240511074956_Account_Raid...

30 lines
794 B
C#
Raw Permalink Normal View History

2024-05-14 05:59:49 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
2024-06-02 02:16:53 +00:00
namespace SCHALE.Common.Migrations.SqlServerMigrations
2024-05-14 05:59:49 +00:00
{
/// <inheritdoc />
public partial class Account_RaidSeasonId : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<long>(
name: "RaidSeasonId",
table: "Accounts",
type: "bigint",
nullable: false,
defaultValue: 0L);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "RaidSeasonId",
table: "Accounts");
}
}
}