target database must *not* support ON UPDATE..CASCADE behavior in foreign keys.
(self)
| 136 | |
| 137 | @property |
| 138 | def non_updating_cascade(self): |
| 139 | """target database must *not* support ON UPDATE..CASCADE behavior in |
| 140 | foreign keys.""" |
| 141 | |
| 142 | return fails_on_everything_except("sqlite", "oracle") + skip_if( |
| 143 | "mssql" |
| 144 | ) |
| 145 | |
| 146 | @property |
| 147 | def recursive_fk_cascade(self): |
nothing calls this directly
no test coverage detected