23 lines
658 B
Bash
23 lines
658 B
Bash
#!/bin/bash
|
|
|
|
dotnet ef database update \
|
|
--project src/Infrastructure/Infrastructure.csproj \
|
|
--startup-project src/Web/Web.csproj \
|
|
--context Hutopy.Infrastructure.Data.ApplicationDbContext \
|
|
--configuration Debug \
|
|
--no-build
|
|
|
|
dotnet ef database update \
|
|
--project src/Web/Web.csproj \
|
|
--startup-project src/Web/Web.csproj \
|
|
--context Hutopy.Web.Features.Messages.Data.MessagingDbContext \
|
|
--configuration Debug \
|
|
--no-build
|
|
|
|
dotnet ef database update \
|
|
--project src/Web/Web.csproj \
|
|
--startup-project src/Web/Web.csproj \
|
|
--context Hutopy.Web.Features.Contents.Data.ContentDbContext \
|
|
--configuration Debug \
|
|
--no-build
|