Model and migration changes

This commit is contained in:
kdeng00
2024-06-20 17:12:10 -04:00
parent 5c913869b4
commit f3eccfd46e
32 changed files with 111 additions and 123 deletions
+4 -4
View File
@@ -5,10 +5,10 @@ echo "Adding Album migration"
dotnet-ef migrations add Album --context AlbumContext
echo "Adding Artist migration"
dotnet-ef migrations add Artist --context ArtistContext
echo "Adding Genre migration"
dotnet-ef migrations add Genre --context GenreContext
echo "Adding Cover art migration"
dotnet-ef migrations add CoverArt --context CoverArtContext
echo "Adding Genre migration"
dotnet-ef migrations add Genre --context GenreContext
echo "Adding Song migration"
dotnet-ef migrations add Song --context SongContext
@@ -19,9 +19,9 @@ echo "Updating Album migration"
dotnet-ef database update --context AlbumContext
echo "Updating Artist migration"
dotnet-ef database update --context ArtistContext
echo "Updating Genre migration"
dotnet-ef database update --context GenreContext
echo "Updating Cover art migration"
dotnet-ef database update --context CoverArtContext
echo "Updating Genre migration"
dotnet-ef database update --context GenreContext
echo "Updating Song migration"
dotnet-ef database update --context SongContext