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

27 lines
693 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init074 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "AppletPwd",
table: "S_Student",
type: "nvarchar(100)",
nullable: true,
comment: "小程序密码");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AppletPwd",
table: "S_Student");
}
}
}