diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-08 00:15:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-08 00:15:30 -0500 |
commit | 4e193afcea1c6096c05338ee000447fed72eb7ba (patch) | |
tree | fc1e4b3bcec9e5b8828219288031e74694ad6e90 /news | |
parent | 16198ad23bdb68e91823a176a9e166cfecd83189 (diff) |
Put news under south control
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'news')
-rw-r--r-- | news/migrations/0001_initial.py | 21 | ||||
-rw-r--r-- | news/migrations/__init__.py | 0 | ||||
-rw-r--r-- | news/models.py | 0 |
3 files changed, 21 insertions, 0 deletions
diff --git a/news/migrations/0001_initial.py b/news/migrations/0001_initial.py new file mode 100644 index 00000000..e30bf5c9 --- /dev/null +++ b/news/migrations/0001_initial.py @@ -0,0 +1,21 @@ +# encoding: utf-8 +import datetime +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 = ['news'] diff --git a/news/migrations/__init__.py b/news/migrations/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/news/migrations/__init__.py diff --git a/news/models.py b/news/models.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/news/models.py |