Skip to content

Commit

Permalink
removes inexistent 'related_name' field
Browse files Browse the repository at this point in the history
from frozen models in migrations.
no migrations used it, so it should be safe to remove.
  • Loading branch information
stefanfoulis committed Dec 19, 2013
1 parent 5980b07 commit 3bdfe3a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion filer/migrations/0013_remove_null_file_name.py
Expand Up @@ -120,7 +120,6 @@ def backwards(self, orm):
'file_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['filer.File']", 'unique': 'True', 'primary_key': 'True'}),
'must_always_publish_author_credit': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'must_always_publish_copyright': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'related_url': ('django.db.models.fields.CharField', [], {'max_length': '250', 'null': 'True', 'blank': 'True'}),
'subject_location': ('django.db.models.fields.CharField', [], {'default': 'None', 'max_length': '64', 'null': 'True', 'blank': 'True'})
},
'taggit.tag': {
Expand Down
Expand Up @@ -118,7 +118,6 @@ def backwards(self, orm):
'file_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['filer.File']", 'unique': 'True', 'primary_key': 'True'}),
'must_always_publish_author_credit': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'must_always_publish_copyright': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'related_url': ('django.db.models.fields.CharField', [], {'max_length': '250', 'null': 'True', 'blank': 'True'}),
'subject_location': ('django.db.models.fields.CharField', [], {'default': 'None', 'max_length': '64', 'null': 'True', 'blank': 'True'})
},
'taggit.tag': {
Expand Down

0 comments on commit 3bdfe3a

Please sign in to comment.