YD_SmartSports.Api/VOL.Core/Migrations/20240630011952_init019.cs

27 lines
728 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 init019 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "DataSource",
table: "N_SportsTestValue",
type: "int",
nullable: false,
defaultValue: 0,
comment: "数据来源");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DataSource",
table: "N_SportsTestValue");
}
}
}