Skip to content

Instantly share code, notes, and snippets.

@andytwoods
Created May 24, 2018 10:38
Show Gist options
  • Save andytwoods/7ffed597e74f3a10bff6ebb55b4f6a68 to your computer and use it in GitHub Desktop.
Save andytwoods/7ffed597e74f3a10bff6ebb55b4f6a68 to your computer and use it in GitHub Desktop.
delete all django migration files in migration folders, via bat file, for windows
FOR /d /r . %%d IN (migrations) DO @IF EXIST "%%d\0*.py" del "%%d\0*.py"
@mmmcorpsvit
Copy link

how add except venv path ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment