Changes between Initial Version and Version 1 of Ticket #5219
- Timestamp:
- Aug 21, 2007, 1:36:37 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5219
- Property Triage Stage Unreviewed → Accepted
-
Ticket #5219 – Description
initial v1 2 2 3 3 When syncdbing the following model : 4 4 {{{ 5 #!python 5 6 class IdentificationConfidence(models.Model): 6 7 … … 12 13 def __unicode__(self): 13 14 return self.identification_confidence 14 15 }}} 15 16 I get the following table produced: 17 {{{ 16 18 INTERACTION_IDENTIFICATION8A86 17 19 }}} 18 20 with fields ID (PK) and 21 {{{ 19 22 IDENTIFICATION_CONFIDENCE NVARCHAR2(20) Nullable = Yes 20 23 }}} 21 24 Syncdb seems to be ignoring null = false and providing a strange table name 22 25 … … 25 28 Catriona 26 29 27 NB I didn't type the the question marks into my issue - they just appeared and it was __unicode__30 NB I didn't type the the question marks into my issue - they just appeared and it was {{{__unicode__}}}