Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 580 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 580 Bytes

PetStore

Run DB Locally using docker

docker run -d --name petstoredb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password mysql:5.7

Database Changes

When making changes to the database classes, a new migration must be created and deployed to the database.

dotnet ef migrations add <migration-name> -p src/DB -s src/Migrator -v

Swagger documentation

Link to Swagger Editor Swagger documentation of the Pet Store