using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations.DisciplineDb { /// public partial class update_table_disciplineresult_add_remark : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DocumentRejectId", table: "DisciplineInvestigate_ProfileComplaints", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "RemarkReject", table: "DisciplineInvestigate_ProfileComplaints", type: "longtext", nullable: true, comment: "หมายเหตุยุติเรื่อง") .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "Offense", table: "DisciplineDisciplinary_ProfileComplaintInvestigates", type: "longtext", nullable: true, comment: "ฐานความผิดรายบุคคล") .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "Remark", table: "DisciplineDisciplinary_ProfileComplaintInvestigates", type: "longtext", nullable: true, comment: "ฐานความผิดรายบุคคลหมายเหตุ") .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateIndex( name: "IX_DisciplineInvestigate_ProfileComplaints_DocumentRejectId", table: "DisciplineInvestigate_ProfileComplaints", column: "DocumentRejectId"); migrationBuilder.AddForeignKey( name: "FK_DisciplineInvestigate_ProfileComplaints_Documents_DocumentRe~", table: "DisciplineInvestigate_ProfileComplaints", column: "DocumentRejectId", principalTable: "Documents", principalColumn: "Id"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_DisciplineInvestigate_ProfileComplaints_Documents_DocumentRe~", table: "DisciplineInvestigate_ProfileComplaints"); migrationBuilder.DropIndex( name: "IX_DisciplineInvestigate_ProfileComplaints_DocumentRejectId", table: "DisciplineInvestigate_ProfileComplaints"); migrationBuilder.DropColumn( name: "DocumentRejectId", table: "DisciplineInvestigate_ProfileComplaints"); migrationBuilder.DropColumn( name: "RemarkReject", table: "DisciplineInvestigate_ProfileComplaints"); migrationBuilder.DropColumn( name: "Offense", table: "DisciplineDisciplinary_ProfileComplaintInvestigates"); migrationBuilder.DropColumn( name: "Remark", table: "DisciplineDisciplinary_ProfileComplaintInvestigates"); } } }