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:
parent
8b92680a82
commit
f1d8abf160
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue