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

class Migration:
    
    depends_on = (
        ("fakeapp", "0001_spam"),
    )
    
    def forwards(self):
        pass
    
    def backwards(self):
        pass