Last active
January 30, 2021 20:02
-
-
Save alikrc/1f1cad2bc38dddf9c084054e2c4e4bf2 to your computer and use it in GitHub Desktop.
identity server ef migration commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet ef migrations add InitialIdentityServerPersistedGrantDbMigration -c PersistedGrantDbContext -o Data/Migrations/IdentityServer/PersistedGrantDb | |
dotnet ef migrations add InitialIdentityServerConfigurationDbMigration -c ConfigurationDbContext -o Data/Migrations/IdentityServer/ConfigurationDb | |
dotnet ef migrations add InitialIdentityServerApplicationDbMigration -c ApplicationDbContext -o Data/Migrations/IdentityServer/ApplicationDb | |
//reference | |
https://stackoverflow.com/questions/45574821/identityserver4-persistedgrantdbcontext-configurationdbcontext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment