Can I delete the activities list?

Hello!
I installed the Activities app. The list is logically getting longer and longer. Can I delete individual activities or the entire list?

You can simply truncate the oc_activity database table.
Or you DELETE FROM oc_activity WHERE affecteduser = '<user-id>'

1 Like

Thanks for the answer!
I wish there was a button on the program interface. I hate tampering with databases.

1 Like

So if you want to send the sql command DELETE FROM oc_activity; to the mysql database in the docker image, use this command:

docker exec nextcloud_db_1 mysql nextcloud -p$yourMysqlRootPassword -e "DELETE FROM oc_activity"