Give table names to groups and permissions

When you start an app in my case users and you migrate you get tables in the database:

users_user_groups
users_user_user_permissions

I use a custom user model called User inside an app called users

How can I specify what those tables must be named, when I do a migrate please?

You’d have to override the individual fields defining the ManyToManyField relationships defined in the User model (groups and user_permissions) to specify the db_table names.

Ok thank you and how do I do that please? Still very new to all of this