109 lines
3.6 KiB
C#
109 lines
3.6 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace DocuMed.Repository.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class editMHAddDouble : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "Temperature",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "double precision",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "integer");
|
|
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "SystolicBloodPressure",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "double precision",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "integer");
|
|
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "SPO2",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "double precision",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "integer");
|
|
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "PulseRate",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "double precision",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "integer");
|
|
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "DiastolicBloodPressure",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "double precision",
|
|
nullable: false,
|
|
oldClrType: typeof(int),
|
|
oldType: "integer");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "Temperature",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "integer",
|
|
nullable: false,
|
|
oldClrType: typeof(double),
|
|
oldType: "double precision");
|
|
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "SystolicBloodPressure",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "integer",
|
|
nullable: false,
|
|
oldClrType: typeof(double),
|
|
oldType: "double precision");
|
|
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "SPO2",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "integer",
|
|
nullable: false,
|
|
oldClrType: typeof(double),
|
|
oldType: "double precision");
|
|
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "PulseRate",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "integer",
|
|
nullable: false,
|
|
oldClrType: typeof(double),
|
|
oldType: "double precision");
|
|
|
|
migrationBuilder.AlterColumn<int>(
|
|
name: "DiastolicBloodPressure",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
type: "integer",
|
|
nullable: false,
|
|
oldClrType: typeof(double),
|
|
oldType: "double precision");
|
|
}
|
|
}
|
|
}
|