Recover deleted Sketch #3054
-
Hello! Is it possible to recover a sketch accidentally deleted from the UI? |
Beta Was this translation helpful? Give feedback.
Answered by
andreafabrizi
Mar 27, 2024
Replies: 1 comment
-
So I've just found the solution myself, the data is not deleted at all and the sketch is only marked as deleted in the db. What you need to do is just connect to postgres and run a query like: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
andreafabrizi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So I've just found the solution myself, the data is not deleted at all and the sketch is only marked as deleted in the db.
What you need to do is just connect to postgres and run a query like:
update sketch_status set status='new' where id=123;