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: mail@… 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'

Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

Fixed in [3558].

Note: See TracTickets for help on using tickets.
Back to Top