เพิ่มโหลดวันที่จ่ายเงินผู้สมัคร

This commit is contained in:
Kittapath 2023-06-08 12:26:54 +07:00
parent e8cb94c541
commit 1223720994
8 changed files with 3272 additions and 287 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,30 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recurit.Exam.Service.Migrations
{
/// <inheritdoc />
public partial class updatetablecandidateaddpaymentdate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "PaymentDate",
table: "Candidates",
type: "datetime(6)",
nullable: true,
comment: "วันที่ชำระเงิน");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PaymentDate",
table: "Candidates");
}
}
}