Hi there
in production, i have a user that deleted by mistake a document folder (containing many sub-folders and then, documents).
I need to restore this documentFolder.
I run a SQL command to
Now i can see again my DocumentFolder and all the given sub-folders in the treeView.
But... When i click on this "restored" folder, directly on the name, i cannot see any more all documents of all sub-folders like before.
Could you help me and tell me if there is any other attributes that i should update?
I would like to click on the folder name and see all sub-folders documents like before
Thanks for your support
in production, i have a user that deleted by mistake a document folder (containing many sub-folders and then, documents).
I need to restore this documentFolder.
I run a SQL command to
PHP Code:
mysql> select * from document_folder where id = '594b8ecbc13a6a06f';
+-------------------+--------+---------+-------------+---------------------+---------------------+-------------------+-------------------+-------------------+
| id | name | deleted | description | created_at | modified_at | created_by_id | modified_by_id | parent_id |
+-------------------+--------+---------+-------------+---------------------+---------------------+-------------------+-------------------+-------------------+
| 594b8ecbc13a6a06f | BILANS | 1 | NULL | 2017-06-22 09:32:59 | 2017-08-07 11:50:39 | 58a6d4903825fe0f2 | 58a72f1daef1e7174 | 59674b8c43157a8c1 |
+-------------------+--------+---------+-------------+---------------------+---------------------+-------------------+-------------------+-------------------+
1 row in set (0.00 sec)
mysql> update document_folder set deleted =0 where id = '594b8ecbc13a6a06f';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
But... When i click on this "restored" folder, directly on the name, i cannot see any more all documents of all sub-folders like before.
Could you help me and tell me if there is any other attributes that i should update?
I would like to click on the folder name and see all sub-folders documents like before
Thanks for your support
Comment