1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env python
import settings
import os
def get_app_name(app_str):
if '.' in app_str:
return app_str.rsplit('.', 1)[-1]
return app_str
apps = [get_app_name(app) for app in settings.INSTALLED_APPS]
for app in apps:
os.system('python manage.py sqlall %s' % app)
|
More like this
- extras.py for management commands by dnordberg 5 years, 9 months ago
- Creating MySQL Alter table commands for Foreign Keys by vidyanand 4 years, 11 months ago
- Command Line Script Launcher by dakrauth 4 years, 10 months ago
- Load customized SQL by roppert 4 years, 3 months ago
- Link Media Command by elwaywitvac 4 years, 8 months ago
Comments