sqlite3 - Replicating Django User Passwords -
i trying seperate current django sqlite3 database 2 databases. requires replicating user accounts old database new one. possible replicate/copy user object since raw password not stored?
yes, can replicate. django authenticates users
using password hash. make sure have same password hashers enabled in settings.py
i.e.
password_hashers = ( 'django.contrib.auth.hashers.md5passwordhasher', )
Comments
Post a Comment