add south migrations, convert update to python
This commit is contained in:
parent
dc1bd6bccd
commit
2c07dedac0
46 changed files with 2729 additions and 48 deletions
21
pandora/app/management/commands/south_installed.py
Normal file
21
pandora/app/management/commands/south_installed.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
from django.core.management.base import BaseCommand
|
||||
from django.db import connection, transaction
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
"""
|
||||
"""
|
||||
help = 'check if south migrations are initialized'
|
||||
args = ''
|
||||
|
||||
def handle(self, **options):
|
||||
try:
|
||||
import south.models
|
||||
table_name = south.models.MigrationHistory._meta.db_table
|
||||
cursor = connection.cursor()
|
||||
db_rows = connection.introspection.get_table_description(cursor, table_name)
|
||||
print "yes"
|
||||
except:
|
||||
print "no"
|
||||
Loading…
Add table
Add a link
Reference in a new issue