Retroactively remove Tagit reference from the initial tags app migration, issue #127

This commit is contained in:
Roberto Rosario
2015-01-05 04:14:27 -04:00
parent be5d5ce5cf
commit 24b5b98720

View File

@@ -10,7 +10,7 @@ class Migration(SchemaMigration):
# Adding model 'TagProperties'
db.create_table(u'tags_tagproperties', (
(u'id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
('tag', self.gf('django.db.models.fields.related.ForeignKey')(related_name='properties', to=orm['taggit.Tag'])),
('tag', self.gf('django.db.models.fields.IntegerField')),
('color', self.gf('django.db.models.fields.CharField')(max_length=3)),
))
db.send_create_signal(u'tags', ['TagProperties'])
@@ -30,7 +30,7 @@ class Migration(SchemaMigration):
'Meta': {'object_name': 'TagProperties'},
'color': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'properties'", 'to': u"orm['taggit.Tag']"})
'tag': ('django.db.models.fields.IntegerField', [], {})
}
}