Skip to content

Commit 2a96a25

Browse files
Fix regex for autogenerate (#262)
Fix an issue where autogenerating a script causes it to not recognize the correct order of parameters. Closes: 261 Signed-off-by: Iustin Dumitrescu <[email protected]>
1 parent b9495d4 commit 2a96a25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlalchemy_cockroachdb/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,9 +432,9 @@ def get_foreign_keys(
432432
_,
433433
match,
434434
_,
435-
onupdate,
436-
_,
437435
ondelete,
436+
_,
437+
onupdate,
438438
deferrable,
439439
_,
440440
initially,

0 commit comments

Comments
 (0)