summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0003_third.py
blob: fa8ed9763983bcb8439d4586d6272c2b0ea82c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from south.db import db
from django.db import models

class Migration:
    
    depends_on = (
        ("fakeapp", "0003_alter_spam"),
    )
    
    def forwards(self):
        pass
    
    def backwards(self):
        pass