summaryrefslogtreecommitdiffstats
path: root/mirrors/migrations/0015_assign_country_codes.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-04-26 18:53:49 +0200
committerDan McGee <dan@archlinux.org>2012-04-26 18:53:49 +0200
commit7f2ed459e92b56c28a8ca50292e95a42987544d4 (patch)
tree36b31d66078b803dd1a6ef071fafc27ec9d2fe9a /mirrors/migrations/0015_assign_country_codes.py
parent4dcfaddff526dca2828571326aa7263a3272fcdf (diff)
downloadarchweb-7f2ed459e92b56c28a8ca50292e95a42987544d4.tar.gz
archweb-7f2ed459e92b56c28a8ca50292e95a42987544d4.tar.xz
Remove now-unused NullCharField
It would be straightforward if we just needed to remove the field class definition, but we also need to update all migrations that referenced it so we don't have problems starting and migrating from scratch. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/migrations/0015_assign_country_codes.py')
-rw-r--r--mirrors/migrations/0015_assign_country_codes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/migrations/0015_assign_country_codes.py b/mirrors/migrations/0015_assign_country_codes.py
index 1d16ada..c1b0f96 100644
--- a/mirrors/migrations/0015_assign_country_codes.py
+++ b/mirrors/migrations/0015_assign_country_codes.py
@@ -79,7 +79,7 @@ class Migration(DataMigration):
'mirrors.mirrorurl': {
'Meta': {'object_name': 'MirrorUrl'},
'country': ('django_countries.fields.CountryField', [], {'max_length': '2', 'blank': 'True'}),
- 'country_old': ('mirrors.models.NullCharField', [], {'db_index': 'True', 'max_length': '255', 'null': 'True', 'blank': 'True'}),
+ 'country_old': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '255', 'null': 'True', 'blank': 'True'}),
'has_ipv4': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'has_ipv6': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),