I would like to name the fields of my Django model with integers. I found the way to do it in MySQL but the same seems not applicable in Django. If I write something like:
class WidgetContributionDevelopment(models.Model):
site = models.ForeignKey(Site, db_column='site_id', default=None)
`1` = models.FloatField(default=0.0)
`2` = models.FloatField(default=0.0)
`3` = models.FloatField(default=0.0)
I get a syntax error. Is there a way to do it? Thanks.