MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / on_update_cascade

Method on_update_cascade

test/requirements.py:128–135  ·  view source on GitHub ↗

target database must support ON UPDATE..CASCADE behavior in foreign keys.

(self)

Source from the content-addressed store, hash-verified

126
127 @property
128 def on_update_cascade(self):
129 """target database must support ON UPDATE..CASCADE behavior in
130 foreign keys."""
131
132 return skip_if(
133 ["sqlite", "oracle"],
134 "target backend %(doesnt_support)s ON UPDATE CASCADE",
135 )
136
137 @property
138 def non_updating_cascade(self):

Callers

nothing calls this directly

Calls 1

skip_ifFunction · 0.90

Tested by

no test coverage detected