diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-30 13:11:14 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-30 13:11:14 -0600 |
commit | 04e830a1dad665da0b05c3c8349eff21667d805d (patch) | |
tree | 347aa89e9a7a6bf30771951d2bc2fa98ac9a1e8f /devel | |
parent | dca9fd2ea687b8d20fd5c39c1449846ddef1e3c2 (diff) |
Add initial migration for devel app
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/migrations/0001_initial.py | 18 | ||||
-rw-r--r-- | devel/migrations/__init__.py | 0 |
2 files changed, 18 insertions, 0 deletions
diff --git a/devel/migrations/0001_initial.py b/devel/migrations/0001_initial.py new file mode 100644 index 00000000..c28fc20f --- /dev/null +++ b/devel/migrations/0001_initial.py @@ -0,0 +1,18 @@ +# encoding: utf-8 +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + +class Migration(SchemaMigration): + + def forwards(self, orm): + pass + + + def backwards(self, orm): + pass + + + models = {} + + complete_apps = ['devel'] diff --git a/devel/migrations/__init__.py b/devel/migrations/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/devel/migrations/__init__.py |