how to add django-database-size to django project view?

Viewed 18

I am trying to use django-database-size to display mysql table sizes to django admin page. The project has very limited docs to how to add the view.

Here is the repo: https://github.com/chrisspen/django-database-size

All it mentions about adding the view: Install the appropriate view in /sql (currently only PostgreSQL and MySQL supported).

1 Answers

App name = database_size and you need to create the view based on files in database directory.

Related