diff options
Diffstat (limited to 'lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0002_second.py')
-rw-r--r-- | lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0002_second.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0002_second.py b/lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0002_second.py new file mode 100644 index 0000000..7c0fb0c --- /dev/null +++ b/lib/python2.7/site-packages/south/tests/otherfakeapp/migrations/0002_second.py @@ -0,0 +1,11 @@ +from south.db import db +from django.db import models + +class Migration: + + def forwards(self): + pass + + def backwards(self): + pass + |