I have these 10 tables in Django (6-Auth tables and 4 Django tables) I am not using these files in my production project, I thought of removing them but read that its not a good practice to remove. I am dealing with some million records(GET and POST operations), Will these tables effect my code performance in the long run?
I have Tried removing these tables but all of them are interlinked with foreign keys.
Deleting the Django tables can cause unexpected behavior. These tables are there for providing specific services.
Tables started with Django have specific role:
These tables are essential for Django to work properly.
Auth related tables such as
these tables maintain auth permissions, auth Group, and group permissions. If you are not using Django Auth, Group or Permissions features you can delete it. But I suggest let it be.
These tables won't affect your code performance.