Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sources/sqlite/sqlite-schema.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@
pg-fkey)))))
(if (and fkey from to)
(progn
(push-to-end from (fkey-columns fkey))
(push-to-end to (fkey-foreign-columns fkey)))
(push-to-end (apply-identifier-case from) (fkey-columns fkey))
(push-to-end (apply-identifier-case to) (fkey-foreign-columns fkey)))

;; it might be INCLUDING/EXCLUDING clauses that make it we
;; don't have to care about the fkey definition, or it
Expand Down