(self)
| 39 | |
| 40 | @property |
| 41 | def deleted(self): |
| 42 | return self.column._val_is_null(self.value) and (self.explicit or not self.column._val_is_null(self.previous_value)) |
| 43 | |
| 44 | @property |
| 45 | def changed(self): |
nothing calls this directly
no test coverage detected