query report อุทธรณ์
This commit is contained in:
parent
f11f927f7e
commit
52af68a9a9
6 changed files with 11826 additions and 4 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,42 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class updatetableDisciplineComplaint_Appealsaddposition : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Oc",
|
||||
table: "DisciplineComplaint_Appeals",
|
||||
type: "longtext",
|
||||
nullable: true,
|
||||
comment: "สังกัดผู้อุทธรณ์/ร้องทุกข์")
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Position",
|
||||
table: "DisciplineComplaint_Appeals",
|
||||
type: "longtext",
|
||||
nullable: true,
|
||||
comment: "ตำแหน่งผู้อุทธรณ์/ร้องทุกข์")
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Oc",
|
||||
table: "DisciplineComplaint_Appeals");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Position",
|
||||
table: "DisciplineComplaint_Appeals");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -203,6 +203,14 @@ namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb
|
|||
.HasColumnOrder(102)
|
||||
.HasComment("แก้ไขข้อมูลล่าสุดเมื่อ");
|
||||
|
||||
b.Property<string>("Oc")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("สังกัดผู้อุทธรณ์/ร้องทุกข์");
|
||||
|
||||
b.Property<string>("Position")
|
||||
.HasColumnType("longtext")
|
||||
.HasComment("ตำแหน่งผู้อุทธรณ์/ร้องทุกข์");
|
||||
|
||||
b.Property<Guid>("ProfileId")
|
||||
.HasColumnType("char(36)")
|
||||
.HasComment("ProfileId");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue