YD_SmartSports.Api/VOL.Core/Migrations/20240821134308_init038.cs

27 lines
732 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 init038 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "GradeId",
table: "S_SchoolNatureAssocGrade",
type: "int",
nullable: false,
defaultValue: 0,
comment: "年级Id");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "GradeId",
table: "S_SchoolNatureAssocGrade");
}
}
}