Reputation: 3082
How can I do set a custom table name to django builtin tabes?
For example, migrations, content_type or admin_log are stored as:
migrations
content_type
admin_log
Upvotes: 0
Views: 214
Reputation: 96
You can go to internal django source and add db_table attribute to Meta class where you need.
db_table
Meta
Details
Upvotes: 1