YD_SmartSports.Api/VOL.Core/Migrations/20250303092340_20250303v1.cs
2025-06-06 16:55:14 +08:00

37 lines
1004 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250303v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "Times",
table: "XW_TrainStudents",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn<string>(
name: "VideoRecord",
table: "XW_TrainStudents",
type: "nvarchar(max)",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Times",
table: "XW_TrainStudents");
migrationBuilder.DropColumn(
name: "VideoRecord",
table: "XW_TrainStudents");
}
}
}