sqlallall.py

 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

  1. extras.py for management commands by dnordberg 5 years, 9 months ago
  2. Creating MySQL Alter table commands for Foreign Keys by vidyanand 4 years, 11 months ago
  3. Command Line Script Launcher by dakrauth 4 years, 10 months ago
  4. Load customized SQL by roppert 4 years, 3 months ago
  5. Link Media Command by elwaywitvac 4 years, 8 months ago

Comments

(Forgotten your password?)