Files
social-media/update-databases.sh
2024-08-04 03:24:50 -04:00

23 lines
590 B
Bash

#!/bin/bash
dotnet build
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 \
--context Hutopy.Web.Features.Messages.Data.MessagingDbContext \
--configuration Debug \
--no-build
dotnet ef database update \
--project src/Web/Web.csproj \
--context Hutopy.Web.Features.Contents.Data.ContentDbContext \
--configuration Debug \
--no-build