Skip to main content

Reusable User model with required unique email field and mid-project support.

Project description

Reusable User model with required unique email field and mid-project support.

It defines custom User model reusing of the original table (auth_user) if exists. If needed (when added to existing project), it recreates history of applied migrations in the correct order.

Adding to existing project

  • Backup the database

  • Ensure that any reference to User model (in your project and all third-party apps) uses ‘AUTH_USER_MODEL’ setting or ‘get_user_model’.

  • Ensure that there are no duplicit or empty emails in table ‘auth_user’.

  • Test it on a clone of your project, before you try to deploy it to production server.

Installation

pip install django-user-unique-email

Configuration

Add ‘user_unique_email’ to INSTALLED_APPS and set AUTH_USER_MODEL in settings:

# Add user_unique_email to INSTALLED_APPS
INSTALLED_APPS.append('user_unique_email')

# Custom User model
AUTH_USER_MODEL = 'user_unique_email.User'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-user-unique-email-0.1.1.tar.gz (5.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page