YD_WeChatApplet.Api/WeChatApplet/Migrations/20250421064019_20250420v4.cs

40 lines
1.1 KiB
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace YD_WeChatApplet.Api.Migrations
{
public partial class _20250420v4 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "GoalType",
table: "WCA_PersonalGoal");
migrationBuilder.DropColumn(
name: "GoalTypeName",
table: "WCA_PersonalGoal");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "GoalType",
table: "WCA_PersonalGoal",
type: "int",
nullable: false,
defaultValue: 0,
comment: "目标类型");
migrationBuilder.AddColumn<string>(
name: "GoalTypeName",
table: "WCA_PersonalGoal",
type: "nvarchar(200)",
nullable: false,
defaultValue: "",
comment: "目标类型名称");
}
}
}