(self)
| 508 | |
| 509 | @property |
| 510 | def constraints(self) -> dict: |
| 511 | data = {} |
| 512 | if self.auto_now_add or self.auto_now: |
| 513 | data["readOnly"] = True |
| 514 | return data |
| 515 | |
| 516 | def describe(self, serializable: bool) -> dict: |
| 517 | desc = super().describe(serializable) |
nothing calls this directly
no outgoing calls
no test coverage detected