namespace ContractService.Migrations { using System; using System.Data.Entity.Migrations; public partial class Update20210406001 : DbMigration { public override void Up() { AddColumn("dbo.Cs_StaffRelateInfos", "KeyPointNo", c => c.String(maxLength: 128)); CreateIndex("dbo.Cs_StaffRelateInfos", "KeyPointNo"); AddForeignKey("dbo.Cs_StaffRelateInfos", "KeyPointNo", "dbo.Ls_LegalContractKeyPoints", "Id"); } public override void Down() { DropForeignKey("dbo.Cs_StaffRelateInfos", "KeyPointNo", "dbo.Ls_LegalContractKeyPoints"); DropIndex("dbo.Cs_StaffRelateInfos", new[] { "KeyPointNo" }); DropColumn("dbo.Cs_StaffRelateInfos", "KeyPointNo"); } } }