(self, config)
| 1980 | return not self._mysql_check_constraints_exist(config) |
| 1981 | |
| 1982 | def _mysql_expression_defaults(self, config): |
| 1983 | return (against(config, ["mysql", "mariadb"])) and ( |
| 1984 | config.db.dialect._support_default_function |
| 1985 | ) |
| 1986 | |
| 1987 | @property |
| 1988 | def mysql_expression_defaults(self): |
no test coverage detected