src/ldtplatform/migrations/0003_recalculate_contentstat.py
author durandn
Fri, 27 Mar 2015 18:11:26 +0100
changeset 239 6888d282b4cc
parent 102 e2968797bdae
permissions -rw-r--r--
started upgrading to Django 1.6: switched social-auth to python-social-auth

# -*- coding: utf-8 -*-
from django.core.management import call_command
from south.v2 import DataMigration

class Migration(DataMigration):

    def forwards(self, orm):
        # Call the command from ldt_utils app
        call_command('statannotation')

    def backwards(self, orm):
        "Write your backwards methods here."

    models = {
        
    }

    complete_apps = ['ldtplatform']
    symmetrical = True