0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 12:01:19 -05:00

Migrate file feature names when fdata migrations are applied

This commit is contained in:
Andrey Antukh 2023-11-29 16:06:10 +01:00 committed by Andrés Moya
parent 8b92680a82
commit f1d8abf160

View file

@ -283,15 +283,19 @@
;; NOTE: when file is migrated, we break the rule of no perform
;; mutations on get operations and update the file with all
;; migrations applied
;;
;; NOTE: the following code will not work on read-only mode, it
;; is a known issue; we keep is not implemented until we really
;; need this
(if (pmg/migrated? file)
(let [features (set/union (deref cfeat/*new*) (:features file))]
(let [file (update file :features cfeat/migrate-legacy-features)
features (set/union (deref cfeat/*new*) (:features file))]
(db/update! conn :file
{:data (blob/encode (:data file))
:features (db/create-array conn "text" features)}
{:id id})
(persist-pointers! conn id)
(assoc file :features features))
file)))))
(defn get-minimal-file