spascoe's profile - activity
11 years ago | received badge | Scholar ( source ) |
11 years ago | asked a question | IntegrityError during scripted creation of superuser I am trying to create a superuser automatically with the following code: from django.core.management import setup_environ
import settings
setup_environ(settings)
from django.contrib.auth.models import User
u = User(username='<USER>')
u.set_password('<PASSWORD>')
u.is_superuser = True
u.is_staff = True
u.save()
However, I get this IntegrityError which I believe is connected to addition of the User.status field: Traceback (most recent call last):
File "mkadmin.py", line 12, in <module>
u.save()
File "/var/www/askbot/lib/python2.6/site-packages/django/db/models/base.py", line 546, in save
force_update=force_update, update_fields=update_fields)
...
File "/var/www/askbot/lib/python2.6/site-packages/django/db/backends/postgresql_psycopg2/base.py", line 54, in execute
return self.cursor.execute(query, args)
django.db.utils.IntegrityError: null value in column "status" violates not-null constraint
I've tried adding |
11 years ago | answered a question | NameError: global name 'User' is not defined (Fresh install) (askbot only) My diagnosis is that the module If you remove the |