-
Notifications
You must be signed in to change notification settings - Fork 125
Migrations
Thang Chung edited this page Jul 8, 2017
·
5 revisions
- Access Control module
cd <your path>\src\Modules\AccessControlContext\BlogCore.AccessControl.Migrator
dotnet ef migrations add InitialIdentityServerPersistedGrantDbMigration -c PersistedGrantDbContext -o Migrations/PersistedGrantDb
dotnet ef migrations add InitialIdentityServerConfigurationDbMigration -c ConfigurationDbContext -o Migrations/ConfigurationDb
dotnet ef migrations add InitDatabase -c IdentityServerDbContext -o Migrations/IdentityDb
dotnet run
- Blog module
cd <your path>\src\Modules\BlogContext\BlogCore.Blog.Migrator
dotnet ef migrations add InitDatabase -c BlogDbContext
dotnet run