From 0e04c7910b7b6e12af94f5f0cb1a43d0d03e9d1b Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Tue, 9 Jul 2024 19:08:03 -0400 Subject: [PATCH] #93: Updated README and migration script --- README.md | 4 ++-- Scripts/Migrations/Linux/AddUpdate.sh | 25 +++++++++++++------------ 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 26fac34..7287543 100644 --- a/README.md +++ b/README.md @@ -126,11 +126,11 @@ scripts/Migrations/Linux/AddUpdate.sh ``` Or you can manually add the migrations like so for each migration: ```shell -dotnet-ef migrations Add InitialCreate --context UserContext +dotnet dotnet-ef migrations Add InitialCreate --context UserContext ``` Then update the migrations to the database like so*: ```shell -dotnet-ef database update --context UserContext +dotnet dotnet-ef database update --context UserContext ``` All of the contexts can be found in Database/Contexts folder. diff --git a/Scripts/Migrations/Linux/AddUpdate.sh b/Scripts/Migrations/Linux/AddUpdate.sh index 493ceb5..ed4ba7b 100755 --- a/Scripts/Migrations/Linux/AddUpdate.sh +++ b/Scripts/Migrations/Linux/AddUpdate.sh @@ -1,28 +1,29 @@ echo "Adding migrations..." echo "Adding User migration" -~/.dotnet/tools/dotnet-ef migrations add User --context UserContext +dotnet dotnet-ef migrations add User --context UserContext echo "Adding Album migration" -~/.dotnet/tools/dotnet-ef migrations add Album --context AlbumContext +dotnet dotnet-ef migrations add Album --context AlbumContext echo "Adding Artist migration" -~/.dotnet/tools/dotnet-ef migrations add Artist --context ArtistContext +dotnet dotnet-ef migrations add Artist --context ArtistContext echo "Adding Genre migration" -~/.dotnet/tools/dotnet-ef migrations add Genre --context GenreContext +dotnet dotnet-ef migrations add Genre --context GenreContext echo "Adding Cover art migration" -~/.dotnet/tools/dotnet-ef migrations add CoverArt --context CoverArtContext +dotnet dotnet-ef migrations add CoverArt --context CoverArtContext echo "Adding Song migration" -~/.dotnet/tools/dotnet-ef migrations add Song --context SongContext +dotnet dotnet-ef migrations add Song --context SongContext echo "Updating migrations.." echo "Updating User migration" -~/.dotnet/tools/dotnet-ef database update --context UserContext +dotnet dotnet-ef database update --context UserContext echo "Updating Album migration" -~/.dotnet/tools/dotnet-ef database update --context AlbumContext +dotnet dotnet-ef database update --context AlbumContext echo "Updating Artist migration" -~/.dotnet/tools/dotnet-ef database update --context ArtistContext +dotnet dotnet-ef database update --context ArtistContext echo "Updating Genre migration" -~/.dotnet/tools/dotnet-ef database update --context GenreContext +dotnet dotnet-ef database update --context GenreContext echo "Updating Cover art migration" -~/.dotnet/tools/dotnet-ef database update --context CoverArtContext +dotnet dotnet-ef database update --context CoverArtContext echo "Updating Song migration" -~/.dotnet/tools/dotnet-ef database update --context SongContext +dotnet dotnet-ef database update --context SongContext +