Changes between Version 1 and Version 2 of Ticket #25195, comment 3
- Timestamp:
- Aug 27, 2018, 8:24:59 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25195, comment 3
v1 v2 8 8 > where one could specify an explicit default? 9 9 10 We'd need to special case `Coalesce` in `update_or_create` for this to work as references to columns are not allowed in `INSERT`s. In other words, `Coalesce('value', 0) + 1` exhibits the same limitations that `F('value') + 1` has .10 We'd need to special case `Coalesce` in `update_or_create` for this to work as references to columns are not allowed in `INSERT`s. In other words, `Coalesce('value', 0) + 1` exhibits the same limitations that `F('value') + 1` has in `create`.