src/ldtplatform/migrations/0003_recalculate_contentstat.py
author ymh <ymh.work@gmail.com>
Fri, 30 Jan 2015 15:34:34 +0100
changeset 222 7148746cb47a
parent 102 e2968797bdae
permissions -rw-r--r--
Added tag V02.12.20 for changeset 30b4864de41a

# -*- 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