Files
BLHX.Server/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.cs
2024-02-23 14:35:50 +07:00

30 lines
770 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BLHX.Server.Common.Migrations.Player
{
/// <inheritdoc />
public partial class ShipSkins : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ShipSkins",
table: "Players",
type: "jsonb",
nullable: false,
defaultValue: "[]");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ShipSkins",
table: "Players");
}
}
}