Rename default table name in django

I’m trying to rename the default table name manually.

like for “auth_group” table name rename as “authentication_group” like this.
is there any way to do this

Thank you

That is possible with the meta option: db_table

The specific table you’re asking about here is one of the tables created by Django in the auth app. As @leandrodesouzadev points out, you can do it by changing the Meta class for that model, but that’s going to mean that you’ll be patching your Django installation, which is generally not good to do.

I strongly suggest that you simply not worry about it.