damienbod / IdentityServer4AspNetCoreIdentityTemplate

An ASP.NET Core 6.0 IdentityServer4 Identity Bootstrap 4 template with localization

Home Page:https://www.nuget.org/packages/IdentityServer4AspNetCoreIdentityTemplate/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provide DB Dump and sample Migration Files

derbl4ck opened this issue · comments

Adding the migrations from ConfigurationDbContext and PersistedGrantDbContext for sqlServer worked smoothly. Unfortunately, I keep encountering errors when adding the ApplicationDbContext migrations. Therefore it would be extremely helpful to have a sample database dump and see for example migrations under / Data / Migrations.

is there already a schedule when a full working example is available?

@derbl4ck Microsoft SQL example?

@damienbod Would be fine for me :)

@derbl4ck

https://github.com/damienbod/DemoTokensApiKeyVault/tree/master/StsServerIdentity/Migrations

And here's the ps scripts

Add-Migration "init_sts" -c ApplicationDbContext

Update-Database -c ApplicationDbContext

Add-Migration "init_id4_store" -c PersistedGrantDbContext

Update-Database -c PersistedGrantDbContext

Greetings Damien