Fix migration field definition

This commit is contained in:
Roberto Rosario
2015-01-05 04:22:49 -04:00
parent 24b5b98720
commit c9c30125f9

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.IntegerField')),
('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'])