exwiseapi / run_migrations.bat
devnamdev2003
first commit
0da497e
raw
history blame
218 Bytes
@echo off
REM Activate the virtual environment
call env\Scripts\activate.bat
REM Make and apply migrations
python manage.py makemigrations
REM Wait for user to press Enter
set /p exitmsg=Press Enter to exit...
exit