#93: Updated README and migration script

This commit is contained in:
kdeng00
2024-07-09 19:08:03 -04:00
parent 7a0bfb80c4
commit 0e04c7910b
2 changed files with 15 additions and 14 deletions
+2 -2
View File
@@ -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<sup>*</sup>:
```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.