def create_migration(app_label, **kwargs):
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app=app_label, **kwargs)
def create_migration(app_label, **kwargs):
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app=app_label, **kwargs)
def generate_migration():
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app='paypal', initial=True)
Beispiel #4
0
def generate_migration():
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app='systempay', initial=True)
def generate_migration():
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app='accounts', auto=True)
def generate_migration():
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app='accounts', auto=True)
def generate_migration():
    from south.management.commands.schemamigration import Command
    com = Command()
    com.handle(app='oscar_amazon_payments', initial=True)