src/aixweb/migrations/0003_recalculate_contentstat.py
author cavaliet
Wed, 19 Jun 2013 18:02:06 +0200
changeset 34 a92b8dc8de4d
parent 10 fb466c64d84c
permissions -rwxr-xr-x
Added tag V00.01.02 for changeset 7af893e283d6

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