Files
arrr-erp/scripts/new_migration.bat
T
2026-06-20 15:01:44 +05:30

9 lines
140 B
Batchfile

@echo off
setlocal
if "%~1"=="" (
echo Usage: new_migration.bat "message"
exit /b 1
)
alembic revision --autogenerate -m "%~1"
endlocal