Installation von Bookmarks schlägt fehl

Hallo zusammen,

ich versuche verzweifelt, Bookmarks zu installieren. Leider schlägt es fehl mit der Fehlermeldung:

An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘nextcloud_1.oc_bookmarks_shared_folders’ doesn’t exist

Ich habe NC 21 auf einem Shared Webhost installiert.
Hat jemand eine Idee, wie ich das beheben kann?

Lege die fehlende Tabelle von Hand in Deiner Datenbank an:

MariaDB [nextcloud]> describe oc_bookmarks_shared_folders;
+-----------+--------------+------+-----+---------+----------------+
| Field     | Type         | Null | Key | Default | Extra          |
+-----------+--------------+------+-----+---------+----------------+
| id        | bigint(20)   | NO   | PRI | NULL    | auto_increment |
| user_id   | varchar(255) | NO   | MUL | NULL    |                |
| title     | varchar(255) | NO   |     | NULL    |                |
| folder_id | bigint(20)   | NO   | MUL | 0       |                |
+-----------+--------------+------+-----+---------+----------------+
4 rows in set (0.001 sec)

Danke, werde ich mal versuchen!