Changes between Version 1 and Version 2 of Ticket #25195, comment 3


Ignore:
Timestamp:
Aug 27, 2018, 8:24:59 PM (6 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25195, comment 3

    v1 v2  
    88> where one could specify an explicit default?
    99
    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.
     10We'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`.
Back to Top