202104061550574_Update20210406002.cs 850 B

12345678910111213141516171819202122
  1. namespace ContractService.Migrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class Update20210406002 : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. AddColumn("dbo.Ls_LegalContractSupplements", "KeyPointNo", c => c.String(maxLength: 128));
  10. CreateIndex("dbo.Ls_LegalContractSupplements", "KeyPointNo");
  11. AddForeignKey("dbo.Ls_LegalContractSupplements", "KeyPointNo", "dbo.Ls_LegalContractKeyPoints", "Id");
  12. }
  13. public override void Down()
  14. {
  15. DropForeignKey("dbo.Ls_LegalContractSupplements", "KeyPointNo", "dbo.Ls_LegalContractKeyPoints");
  16. DropIndex("dbo.Ls_LegalContractSupplements", new[] { "KeyPointNo" });
  17. DropColumn("dbo.Ls_LegalContractSupplements", "KeyPointNo");
  18. }
  19. }
  20. }