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