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