Target database must support VARCHAR with no length
(self)
| 200 | |
| 201 | @property |
| 202 | def unbounded_varchar(self): |
| 203 | """Target database must support VARCHAR with no length""" |
| 204 | |
| 205 | return skip_if( |
| 206 | ["oracle", "mysql", "mariadb"], |
| 207 | "not supported by database", |
| 208 | ) |
| 209 | |
| 210 | @property |
| 211 | def boolean_col_expressions(self): |