24 lines
575 B
Batchfile
24 lines
575 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo Checking Database Migrations
|
|
echo ========================================
|
|
echo.
|
|
|
|
cd ..\src\PowderCoating.Web
|
|
|
|
echo Current migrations in project:
|
|
echo ----------------------------------------
|
|
dotnet ef migrations list --project ..\PowderCoating.Infrastructure
|
|
echo.
|
|
|
|
echo Database connection info:
|
|
echo ----------------------------------------
|
|
dotnet ef dbcontext info --project ..\PowderCoating.Infrastructure
|
|
echo.
|
|
|
|
echo.
|
|
echo To apply pending migrations, run:
|
|
echo .\scripts\apply-migrations.bat
|
|
echo.
|
|
pause
|