Skip to content

Migrations

Thang Chung edited this page Jun 7, 2017 · 1 revision
  • Security Service
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
  • Customer Service
dotnet ef migrations add InitDatabase -c CustomerDbContext
dotnet run
  • Order Service
dotnet ef migrations add InitDatabase -c OrderDbContext
dotnet run
  • Catalog Service
dotnet ef migrations add InitDatabase -c CatalogDbContext
dotnet run
  • Checkout Process Host
dotnet ef migrations add InitDatabase -c CheckoutProcessDbContext
dotnet run
  • Payment Service
dotnet ef migrations add InitDatabase -c PaymentDbContext
dotnet run
  • Audit Service
dotnet ef migrations add InitDatabase -c AuditDbContext
dotnet run
Clone this wiki locally