YD_SmartSports.Api/VOL.Core/Migrations/20240826130442_init047.cs

26 lines
685 B
C#
Raw Normal View History

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