YD_WeChatApplet.Api/WeChatApplet/Migrations/20250520064645_20250520v4.cs
2025-06-06 14:57:20 +08:00

36 lines
1.0 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace YD_WeChatApplet.Api.Migrations
{
public partial class _20250520v4 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "GroupNumber",
table: "WCA_ExerciseData",
type: "int",
nullable: false,
comment: "组数量",
oldClrType: typeof(int),
oldType: "int",
oldComment: "作业数量");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "GroupNumber",
table: "WCA_ExerciseData",
type: "int",
nullable: false,
comment: "作业数量",
oldClrType: typeof(int),
oldType: "int",
oldComment: "组数量");
}
}
}