using System; using Microsoft.EntityFrameworkCore.Migrations; namespace APT.Data.Migrations.Migrations { public partial class hmr2025111602 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION", columns: table => new { ID = table.Column(type: "uniqueidentifier", nullable: false), IDENTIFY_EVALUATION_PLAN_ID = table.Column(type: "uniqueidentifier", nullable: false), EVALUATION_ID = table.Column(type: "uniqueidentifier", nullable: true), IS_DELETED = table.Column(type: "bit", nullable: false), ORG_ID = table.Column(type: "uniqueidentifier", nullable: false), ENTITY_ORG_TPYE = table.Column(type: "int", nullable: false), FORM_ID = table.Column(type: "uniqueidentifier", nullable: true), FLOW_STATUS = table.Column(type: "int", nullable: false), FLOW_SEND_STATUS = table.Column(type: "int", nullable: false), FLOW_ID = table.Column(type: "uniqueidentifier", nullable: true), CREATE_TIME = table.Column(type: "datetime2", nullable: true), MODIFY_TIME = table.Column(type: "datetime2", nullable: true), CREATER_ID = table.Column(type: "uniqueidentifier", nullable: true), MODIFIER_ID = table.Column(type: "uniqueidentifier", nullable: true) }, constraints: table => { table.PrimaryKey("PK_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION", x => x.ID); table.ForeignKey( name: "FK_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_T_FM_ORGANIZATION_ORG_ID", column: x => x.ORG_ID, principalTable: "T_FM_ORGANIZATION", principalColumn: "ID", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_T_SK_EVALUATION_EVALUATION_ID", column: x => x.EVALUATION_ID, principalTable: "T_SK_EVALUATION", principalColumn: "ID", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_T_SK_IDENTIFY_EVALUATION_PLAN_IDENTIFY_EVALUATION_PLAN_ID", column: x => x.IDENTIFY_EVALUATION_PLAN_ID, principalTable: "T_SK_IDENTIFY_EVALUATION_PLAN", principalColumn: "ID", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateIndex( name: "IX_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_EVALUATION_ID", table: "T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION", column: "EVALUATION_ID"); migrationBuilder.CreateIndex( name: "IX_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_IDENTIFY_EVALUATION_PLAN_ID", table: "T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION", column: "IDENTIFY_EVALUATION_PLAN_ID"); migrationBuilder.CreateIndex( name: "IX_T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION_ORG_ID", table: "T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION", column: "ORG_ID"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "T_SK_IDENTIFY_EVALUATION_PLAN_EVALUATION"); } } }