Opened 18 years ago
Closed 18 years ago
#2928 closed enhancement (fixed)
manage inspectdb >foo.txt truncates 's' of model names on tables that end in 's'
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Core (Management commands) | Version: | 0.95 |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Example follows. Speaks for itself.
class FavSearche(models.Model):
id = models.IntegerField(primary_key=True)
user = models.ForeignKey(AuthUser)
searchterm = models.CharField(maxlength=765)
date_added = models.DateTimeField()
class Meta:
db_table = 'favsearches'
Note:
See TracTickets
for help on using tickets.
Fixed in [3558].