api จัดรอบการสอบ

This commit is contained in:
Kittapath 2023-03-25 01:09:03 +07:00
parent 44d18ff74c
commit bd0f02feb1
24 changed files with 8532 additions and 33 deletions

View file

@ -0,0 +1,42 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recurit.Exam.Service.Migrations
{
/// <inheritdoc />
public partial class Updatetableeducationscroetofloat : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<float>(
name: "Scores",
table: "Educations",
type: "float",
maxLength: 10,
nullable: false,
comment: "คะแนนเฉลี่ยตลอดหลักสูตร",
oldClrType: typeof(int),
oldType: "int",
oldMaxLength: 10,
oldComment: "คะแนนเฉลี่ยตลอดหลักสูตร");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<int>(
name: "Scores",
table: "Educations",
type: "int",
maxLength: 10,
nullable: false,
comment: "คะแนนเฉลี่ยตลอดหลักสูตร",
oldClrType: typeof(float),
oldType: "float",
oldMaxLength: 10,
oldComment: "คะแนนเฉลี่ยตลอดหลักสูตร");
}
}
}