Changes between Initial Version and Version 3 of Ticket #16755
- Timestamp:
- Sep 5, 2011, 4:54:37 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16755
- Property Status new → reopened
-
Ticket #16755 – Description
initial v3 1 1 I created an app called 'auth' which included some very, very simple auth type stuff. I have the django.contrib.auth removed from my INSTALLED_APPS since I do not need it. However, upon running syncdb, all of the django.contrib.auth tables are created even though they are not needed: 2 2 {{{ 3 3 Creating table auth_permission 4 4 Creating table auth_group_permissions … … 8 8 Creating table auth_user 9 9 Creating table auth_message 10 10 }}} 11 11 The work around for this is to rename the app. Once I renamed it to 'site_auth', these tables were no longer created during syncdb.