36 lines
1.0 KiB
C#
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: "组数量");
|
|
}
|
|
}
|
|
}
|