using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace YD_WeChatApplet.Api.Migrations { public partial class _20250522v1 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Calorie", table: "WCA_ExerciseData", type: "float", nullable: true, comment: "卡路里", oldClrType: typeof(int), oldType: "int", oldNullable: true, oldComment: "卡路里"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Calorie", table: "WCA_ExerciseData", type: "int", nullable: true, comment: "卡路里", oldClrType: typeof(double), oldType: "float", oldNullable: true, oldComment: "卡路里"); } } }