Changes between Initial Version and Version 1 of Ticket #19467
- Timestamp:
- Dec 13, 2012, 7:59:28 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19467
- Property Resolution → needsinfo
- Property Status new → closed
-
Ticket #19467 – Description
initial v1 1 1 Seems that model forms or admin dones't clean correctly inline forms. 2 2 {{{ 3 #!python 3 4 class Child(models.Model): 4 5 parent = models.ForeignKey(Parent) … … 9 10 self.something = None 10 11 super(Child, self).clean() 11 12 }}} 12 13 13 14 Postgres raises a: duplicate key value violates unique constraint "child_something_key"