36 lines
1017 B
C#
36 lines
1017 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VOL.Core.Migrations
|
|
{
|
|
public partial class init092 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "Value",
|
|
table: "Ai_HeartRateData",
|
|
type: "int",
|
|
nullable: false,
|
|
comment: "心率",
|
|
oldClrType: typeof(double),
|
|
oldType: "double",
|
|
oldComment: "心率");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "Value",
|
|
table: "Ai_HeartRateData",
|
|
type: "double",
|
|
nullable: false,
|
|
comment: "心率",
|
|
oldClrType: typeof(int),
|
|
oldType: "int",
|
|
oldComment: "心率");
|
|
}
|
|
}
|
|
}
|