Merge commit '08c7a11ec0' into develop

# Conflicts:
#	Migrations/ApplicationDbContextModelSnapshot.cs
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json
#	bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml
#	obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json
#	obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.GlobalUsings.g.cs
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb
#	obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml
#	obj/Debug/net7.0/Sentry.Attributes.cs
#	obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll
#	obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll
#	obj/Debug/net7.0/staticwebassets.build.json
#	obj/Debug/net7.0/staticwebassets.development.json
#	obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props
#	obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props
#	obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props
#	obj/project.assets.json
#	obj/project.nuget.cache
This commit is contained in:
kittapath 2025-02-18 13:40:36 +07:00
commit 045d407938
42 changed files with 25814 additions and 49 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,82 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recruit.Service.Migrations
{
/// <inheritdoc />
public partial class ChangeSumScoretodouble : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<double>(
name: "SumC",
table: "RecruitScores",
type: "double",
nullable: false,
oldClrType: typeof(int),
oldType: "int");
migrationBuilder.AlterColumn<double>(
name: "SumB",
table: "RecruitScores",
type: "double",
nullable: false,
oldClrType: typeof(int),
oldType: "int");
migrationBuilder.AlterColumn<double>(
name: "SumAB",
table: "RecruitScores",
type: "double",
nullable: false,
oldClrType: typeof(int),
oldType: "int");
migrationBuilder.AlterColumn<double>(
name: "SumA",
table: "RecruitScores",
type: "double",
nullable: false,
oldClrType: typeof(int),
oldType: "int");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "SumC",
table: "RecruitScores",
type: "int",
nullable: false,
oldClrType: typeof(double),
oldType: "double");
migrationBuilder.AlterColumn<int>(
name: "SumB",
table: "RecruitScores",
type: "int",
nullable: false,
oldClrType: typeof(double),
oldType: "double");
migrationBuilder.AlterColumn<int>(
name: "SumAB",
table: "RecruitScores",
type: "int",
nullable: false,
oldClrType: typeof(double),
oldType: "double");
migrationBuilder.AlterColumn<int>(
name: "SumA",
table: "RecruitScores",
type: "int",
nullable: false,
oldClrType: typeof(double),
oldType: "double");
}
}
}

View file

@ -1245,17 +1245,17 @@ namespace BMA.EHR.Recruit.Service.Migrations
b.Property<Guid>("ScoreImportId")
.HasColumnType("char(36)");
b.Property<int>("SumA")
.HasColumnType("int");
b.Property<double>("SumA")
.HasColumnType("double");
b.Property<int>("SumAB")
.HasColumnType("int");
b.Property<double>("SumAB")
.HasColumnType("double");
b.Property<int>("SumB")
.HasColumnType("int");
b.Property<double>("SumB")
.HasColumnType("double");
b.Property<int>("SumC")
.HasColumnType("int");
b.Property<double>("SumC")
.HasColumnType("double");
b.HasKey("Id");