This API is written in code-first mode using EF. It's recommended to read the README.md, to configure your database.
Go to project sources:
cd ./Sources/dotnet ef migrations add "MigrationName" --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csproj -c DatabaseContextdotnet ef database update --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csproj -c DatabaseContextdotnet ef migrations remove --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csproj -c DatabaseContextdotnet ef database drop --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csprojdotnet ef migrations list --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csprojdotnet ef database update "OldMigrationName" --startup-project .\Shizima.WebAPI\Shizima.WebAPI.csproj -c DatabaseContext