38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
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: "卡路里");
|
|
}
|
|
}
|
|
}
|