YD_SmartSports.Api/VOL.Core/Migrations/20240826143338_init049.cs
2025-06-06 16:00:39 +08:00

26 lines
696 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init049 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "TeacherPhoto",
table: "S_Teacher",
type: "nvarchar(2000)",
nullable: true,
comment: "老师照片");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "TeacherPhoto",
table: "S_Teacher");
}
}
}