using System; using Microsoft.EntityFrameworkCore.Migrations; namespace APT.Data.Migrations.Migrations { public partial class wyw2025071101 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "T_WB_OUTSOURCE_VIDEO", columns: table => new { ID = table.Column(type: "uniqueidentifier", nullable: false), SOURCE_ID = table.Column(type: "uniqueidentifier", nullable: false), VIDEO_ID = table.Column(type: "uniqueidentifier", nullable: false), 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_WB_OUTSOURCE_VIDEO", x => x.ID); table.ForeignKey( name: "FK_T_WB_OUTSOURCE_VIDEO_T_FM_ORGANIZATION_ORG_ID", column: x => x.ORG_ID, principalTable: "T_FM_ORGANIZATION", principalColumn: "ID", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_T_WB_OUTSOURCE_VIDEO_T_PF_FILE_DB_VIDEO_ID", column: x => x.VIDEO_ID, principalTable: "T_PF_FILE_DB", principalColumn: "ID", onDelete: ReferentialAction.Restrict); table.ForeignKey( name: "FK_T_WB_OUTSOURCE_VIDEO_T_WB_OUTSOURCE_SOURCE_ID", column: x => x.SOURCE_ID, principalTable: "T_WB_OUTSOURCE", principalColumn: "ID", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateIndex( name: "IX_T_WB_OUTSOURCE_VIDEO_ORG_ID", table: "T_WB_OUTSOURCE_VIDEO", column: "ORG_ID"); migrationBuilder.CreateIndex( name: "IX_T_WB_OUTSOURCE_VIDEO_SOURCE_ID", table: "T_WB_OUTSOURCE_VIDEO", column: "SOURCE_ID"); migrationBuilder.CreateIndex( name: "IX_T_WB_OUTSOURCE_VIDEO_VIDEO_ID", table: "T_WB_OUTSOURCE_VIDEO", column: "VIDEO_ID"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "T_WB_OUTSOURCE_VIDEO"); } } }