mirror of
https://gitea.invidious.io/iv-org/documentation
synced 2025-04-07 10:41:08 +02:00
313 B
313 B
Invidious needs one PostgreSQL database with five tables.
channel_videos
channels
nonces
users
videos
The table videos
grows a lot and needs the most storage. You can clean it up using following commands:
$ sudo -i -u postgres
$ psql invidious -c "TRUNCATE TABLE videos"
$ exit