#16454: sequence for AUTH_PERMISSION.ID
-------------------------------------+-------------------------------------
Reporter: | Owner: nobody
alexei.vlassov@… | Status: closed
Type: Bug | Component: Database layer
Milestone: | (models, ORM)
Version: SVN | Severity: Release blocker
Resolution: needsinfo | Keywords: oracle
Triage Stage: | Has patch: 0
Unreviewed | Needs tests: 0
Needs documentation: 0 | Easy pickings: 0
Patch needs improvement: 0 |
UI/UX: 0 |
-------------------------------------+-------------------------------------
Changes (by aaugustin):
* status: new => closed
* resolution: => needsinfo
Comment:
I couldn't reproduce the problem with the following procedure:
- `django-admin.py startproject test16454`
- `vi settings.py`
{{{
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': '',
'USER': 'django',
'PASSWORD': 'django',
}
}
DEFAULT_TABLESPACE = 'test16454'
DEFAULT_INDEX_TABLESPACE = 'test16454'
}}}
- `sqlplus`
{{{
create tablespace test16454 datafile 'test16454.dbf' size 20M;
}}}
- `./manage.py syncdb`
{{{
Creating tables ...
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_user_permissions
Creating table auth_user_groups
Creating table auth_user
Creating table django_content_type
Creating table django_session
Creating table django_site
You just installed Django's auth system, which means you don't have any
superusers defined.
Would you like to create one now? (yes/no): yes
Username (leave blank to use 'aaugustin'): [[[ redacted ]]]
E-mail address: [[[ redacted ]]]
Password:
Password (again):
Superuser created successfully.
Installing custom SQL ...
Installing indexes ...
No fixtures found.
}}}
Oracle Database 10g Express Edition Release 10.2.0.1.0
Since the original report doesn't contain any information about the
context, there isn't much more I can do.
--
Ticket URL: <https://code.djangoproject.com/ticket/16454#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.