Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / south / tests / brokenapp / migrations / 0003_depends_on_higher.py @ d1a4905f

History | View | Annotate | Download (206 Bytes)

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

    
4
class Migration:
5

    
6
    depends_on = [('brokenapp', '0004_higher')]
7
    
8
    def forwards(self):
9
        pass
10
    
11
    def backwards(self):
12
        pass
13