Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / south / tests / otherfakeapp / migrations / 0001_first.py @ d1a4905f

History | View | Annotate | Download (221 Bytes)

1
from south.db import db
2
from django.db import models
3

    
4
class Migration:
5
    
6
    depends_on = (
7
        ("fakeapp", "0001_spam"),
8
    )
9
    
10
    def forwards(self):
11
        pass
12
    
13
    def backwards(self):
14
        pass
15