Created
January 25, 2019 00:58
-
-
Save iris9112/b15da57a85ccddfdec4654fe2c35ae30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
delete all migration files, run it at the top of project folder | |
run with the virtualenvwrapper virtualenv activated | |
TODO: find migration if located on os python folder | |
""" | |
import os | |
import argparse | |
def delete_migrations(folder_path=None): | |
""" | |
delete migrations given a folder, if not given, | |
delete migration_files under current folder directory | |
""" | |
# find all migration folders | |
if not folder_path: | |
folder_path = os.getcwd() | |
for a,b,c in os.walk(folder_path): | |
if a.endswith('migrations'): | |
# find all migration files | |
migration_files = [f for f in c if '__init__' not in f] | |
for f in migration_files: | |
print(os.path.join(a, f)) | |
# delete migration files | |
os.remove(os.path.join(a, f)) | |
def delete_pinax_migrations(): | |
""" | |
delete pinax migrations | |
""" | |
try: | |
for a,b,c in os.walk(os.environ['WORKON_HOME']): | |
if a.endswith('pinax/notifications'): | |
delete_migrations(folder_path=a) | |
except Exception as e: | |
for a,b,c in os.walk(os.path.join(os.environ['HOME'], '.virtualenvs')): | |
if a.endswith('pinax/notifications'): | |
delete_migrations(folder_path=a) | |
if __name__ == '__main__': | |
delete_migrations() | |
delete_pinax_migrations() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment