packages

Set database tables prefix in Django

August 14, 2022
Database
database, packages

Sometimes when you using same database by different applications it is a good (or required) to separate tables between apps to avoid any conflicts. In this case you can find useful django-database-prefix library available on PyPi Installation # pip pip install django-database-prefix poetry poetry add django-database-prefix pipenv pipenv install django-database-prefix After package installation you need to add it to the your project’s settings.py file on first place. 'django_database_prefix', 'django.contrib.admin', 'django.contrib.auth', 'django. ...