YD_SmartSports.Api/VOL.Core/Migrations/20241028032035_init087.cs

28 lines
715 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init087 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "DataType",
table: "G_Activities",
type: "int",
nullable: false,
defaultValue: 0,
comment: "模式类型");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DataType",
table: "G_Activities");
}
}
}