Skip to content
Snippets Groups Projects
Unverified Commit f1652713 authored by Cam Saul's avatar Cam Saul
Browse files

Clear out FK target IDs so FKs can get reset

parent df8d51e6
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -34,7 +34,10 @@
;; clear out all Fingerprints so we force analysis to run again. Clear out special type and has_field_values as
;; well so we can be sure those will be set to the correct values
(db/debug-print-queries
(db/update! Field {:set {:fingerprint_version 0, :special_type nil, :has_field_values nil}}))
(db/update! Field {:set {:fingerprint_version 0
:special_type nil
:has_field_values nil
:fk_target_field_id nil}}))
;; now re-run sync
(sync/sync-database! (Database :is_sample true))
;; done!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment