-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
12 lines (8 loc) · 935 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
init-migrate:
dotnet dotnet-ef migrations add initialize -s ./src/SettlementService.Api/SettlementService.Api.csproj --project ./src/SettlementService.Infrastructure/SettlementService.Infrastructure.csproj -o ./Persistent/Migrations
db-migrate MIGRATION_NAME:
dotnet dotnet-ef migrations add {{MIGRATION_NAME}} -s ./src/SettlementService.Api/SettlementService.Api.csproj --project ./src/SettlementService.Infrastructure/SettlementService.Infrastructure.csproj -o ./Persistent/Migrations
db-update:
dotnet dotnet-ef database update -s ./src/SettlementService.Api/SettlementService.Api.csproj --project ./src/SettlementService.Infrastructure/SettlementService.Infrastructure.csproj
db-migrate-rm MIGRATION_NAME:
dotnet dotnet-ef migrate remove {{MIGRATION_NAME}} -s ./src/SettlementService.Api/SettlementService.Api.csproj --project ./src/SettlementService.Infrastructure/SettlementService.Infrastructure.csproj