Ticket #7152: models.py

File models.py, 182 bytes (added by Matthias Goerner <enischte@…>, 16 years ago)

model causing exception

Line 
1from django.db import models
2
3# Create your models here.
4
5class something(models.Model):
6 field = models.CharField(max_length=200)
7 class Meta:
8 db_table='rig#$%#$%ing'
Back to Top