Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
@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