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( name: "GoalType", table: "WCA_PersonalGoal", type: "int", nullable: false, defaultValue: 0, comment: "目标类型"); migrationBuilder.AddColumn( name: "GoalTypeName", table: "WCA_PersonalGoal", type: "nvarchar(200)", nullable: false, defaultValue: "", comment: "目标类型名称"); } } }