diff options
author | Dan McGee <dan@archlinux.org> | 2014-06-28 12:04:19 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-09-01 18:26:05 -0500 |
commit | 51d90e23c9237772a2c327a7fe518d5554532861 (patch) | |
tree | 46a7eceeb9ca8e7c2b640a8d05f75bafdb903645 /mirrors/migrations/0001_initial.py | |
parent | 345d756b889426723c63e0aee8a445df6573cd65 (diff) |
Remove old south migrations
Django 1.7 has built-in migrations support, so we no longer want these
around. All existing installs should be fully migrated at this point to
the latest schema.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/migrations/0001_initial.py')
-rw-r--r-- | mirrors/migrations/0001_initial.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mirrors/migrations/0001_initial.py b/mirrors/migrations/0001_initial.py deleted file mode 100644 index 4a3173c5..00000000 --- a/mirrors/migrations/0001_initial.py +++ /dev/null @@ -1,17 +0,0 @@ -# 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 = ['mirrors'] |