~ubuntuone-pqm-team/django-south/stable

« back to all changes in this revision

Viewing changes to south/tests/deps_a/migrations/0005_a.py

  • Committer: Michael Nelson
  • Date: 2013-04-26 11:53:09 UTC
  • Revision ID: michael.nelson@canonical.com-20130426115309-ed56jmpkt407wbtb
Tags: 0.7.6
Initial South-0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from south.db import db
 
2
from django.db import models
 
3
 
 
4
class Migration:
 
5
 
 
6
    def forwards(self):
 
7
        pass
 
8
    
 
9
    def backwards(self):
 
10
        pass
 
11