This commit is contained in:
tanglong 2025-07-10 11:31:03 +08:00
parent 3969283904
commit 5c3471dbcd
2 changed files with 7537 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,39 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250710v3 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ClassroomStageId",
table: "Ai_ClassRoomRecord");
migrationBuilder.AddColumn<int>(
name: "ClassroomStageId",
table: "Ai_HeartRateData",
type: "int",
nullable: false,
defaultValue: 0,
comment: "阶段Id");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ClassroomStageId",
table: "Ai_HeartRateData");
migrationBuilder.AddColumn<int>(
name: "ClassroomStageId",
table: "Ai_ClassRoomRecord",
type: "int",
nullable: false,
defaultValue: 0,
comment: "阶段Id");
}
}
}