Ticket #15943: pre-post-save-raw-flag-doc.diff
File pre-post-save-raw-flag-doc.diff, 893 bytes (added by , 13 years ago) |
---|
-
docs/ref/signals.txt
114 114 ``instance`` 115 115 The actual instance being saved. 116 116 117 ``raw`` 118 A boolean; ``True`` if the model is saved exactly as presented 119 (i.e. when loading a fixture). One should not query/modify other 120 records in the database as the database might not be in a 121 consistent state yet. 122 117 123 .. versionadded:: 1.3 118 124 119 125 ``using`` … … 139 145 ``created`` 140 146 A boolean; ``True`` if a new record was created. 141 147 148 ``raw`` 149 A boolean; ``True`` if the model is saved exactly as presented 150 (i.e. when loading a fixture). One should not query/modify other 151 records in the database as the database might not be in a 152 consistent state yet. 153 142 154 .. versionadded:: 1.3 143 155 144 156 ``using``