Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / south / tests / deps_a / migrations / 0004_a.py @ d1a4905f

History | View | Annotate | Download (194 Bytes)

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

    
4
class Migration:
5

    
6
    depends_on = [('deps_b', '0003_b')]
7

    
8
    def forwards(self):
9
        pass
10
    
11
    def backwards(self):
12
        pass
13