We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In dev, the following migration gets created if you do Add-Migration:
dev
Add-Migration
public override void Up() { DropForeignKey("dbo.PackageDeprecationCves", "PackageDeprecation_Key", "dbo.PackageDeprecations"); DropForeignKey("dbo.PackageDeprecationCves", "Cve_Key", "dbo.Cves"); DropForeignKey("dbo.PackageDeprecationCwes", "PackageDeprecation_Key", "dbo.PackageDeprecations"); DropForeignKey("dbo.PackageDeprecationCwes", "Cwe_Key", "dbo.Cwes"); DropIndex("dbo.Cves", new[] { "CveId" }); DropIndex("dbo.Cwes", new[] { "CweId" }); DropIndex("dbo.PackageDeprecationCves", new[] { "PackageDeprecation_Key" }); DropIndex("dbo.PackageDeprecationCves", new[] { "Cve_Key" }); DropIndex("dbo.PackageDeprecationCwes", new[] { "PackageDeprecation_Key" }); DropIndex("dbo.PackageDeprecationCwes", new[] { "Cwe_Key" }); DropColumn("dbo.PackageDeprecations", "CvssRating"); DropTable("dbo.Cves"); DropTable("dbo.Cwes"); DropTable("dbo.PackageDeprecationCves"); DropTable("dbo.PackageDeprecationCwes"); }
/cc @scottbommarito @xavierdecoster
This would have been caught with #4934.
The text was updated successfully, but these errors were encountered:
I think this may be due to #7124. Investigating.
Sorry, something went wrong.
Recreate development dependency migration on latest EF model (#7141)
ce4f441
Address #5666 Address #7140
822e4e6
joelverhagen
No branches or pull requests
In
dev
, the following migration gets created if you doAdd-Migration
:/cc @scottbommarito @xavierdecoster
This would have been caught with #4934.
The text was updated successfully, but these errors were encountered: