YD_SmartSports.Api/VOL.Core/Migrations/20250520020903_20250520v1.cs
2025-06-06 16:55:14 +08:00

28 lines
735 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250520v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "DataSource",
table: "S_HomeWorkStudents",
type: "int",
nullable: false,
defaultValue: 0,
comment: "数据来源");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DataSource",
table: "S_HomeWorkStudents");
}
}
}