(self)
| 190 | |
| 191 | @property |
| 192 | def constraints(self) -> dict: |
| 193 | return { |
| 194 | "ge": -32768, |
| 195 | "le": 32767, |
| 196 | } |
| 197 | |
| 198 | class _db_postgres: |
| 199 | GENERATED_SQL = "SMALLSERIAL NOT NULL PRIMARY KEY" |
nothing calls this directly
no outgoing calls
no test coverage detected