YD_SmartSports.Api/VOL.Core/Migrations/20250709074047_20250709v3.cs
2025-07-09 15:42:43 +08:00

38 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250709v3 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "Rank",
table: "Ai_FastJumpRopeData",
type: "int",
nullable: true,
comment: "等级",
oldClrType: typeof(int),
oldType: "int",
oldComment: "等级");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "Rank",
table: "Ai_FastJumpRopeData",
type: "int",
nullable: false,
defaultValue: 0,
comment: "等级",
oldClrType: typeof(int),
oldType: "int",
oldNullable: true,
oldComment: "等级");
}
}
}