YD_SmartSports.Api/VOL.Core/Migrations/20250115104234_20250115v2.cs

27 lines
705 B
C#
Raw Permalink Normal View History

2025-06-06 16:55:14 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
2025-06-06 16:00:39 +08:00
#nullable disable
namespace VOL.Core.Migrations
{
2025-06-06 16:55:14 +08:00
public partial class _20250115v2 : Migration
2025-06-06 16:00:39 +08:00
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "GroupId",
table: "Ai_FastJumpRopeData",
type: "nvarchar(100)",
nullable: true,
comment: "GroupId");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "GroupId",
table: "Ai_FastJumpRopeData");
}
}
}