YD_WeChatApplet.Api/WeChatApplet/Migrations/20250522032411_20250522v1.cs

38 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 _20250522v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<double>(
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<int>(
name: "Calorie",
table: "WCA_ExerciseData",
type: "int",
nullable: true,
comment: "卡路里",
oldClrType: typeof(double),
oldType: "float",
oldNullable: true,
oldComment: "卡路里");
}
}
}