Project

General

Profile

Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (210 Bytes)

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

    
4
class Migration:
5
    
6
    depends_on = [('circular_a', '0001_first')]
7
    
8
    def forwards(self):
9
        pass
10
    
11
    def backwards(self):
12
        pass
13