#!/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 dotnet ef database update \ --project src/Web/Web.csproj \ --context Hutopy.Web.Features.Memberships.Data.MembershipDbContext \ --configuration Debug \ --no-build