Changes between Initial Version and Version 1 of Ticket #28736
- Timestamp:
- Oct 24, 2017, 4:53:16 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28736 – Description
initial v1 1 1 manage.py migrate fails when these are added to INSTALLED_APPS: 2 3 2 'rest_framework', 3 'rest_framework.authtoken', 4 4 5 5 The problem is present when using postgresql-8.4.20 (RHEL 6) … … 20 20 2) edit mysite/mysite/settings.py 21 21 add to INSTALLED_APPS = [ ]: 22 23 22 'rest_framework', 23 'rest_framework.authtoken', 24 24 change DATABASES 25 25 to a PostgreSQL 8.4.20 database. … … 27 27 28 28 Full output 29 {{{ 29 30 python manage.py migrate 30 31 Operations to perform: … … 87 88 django.db.utils.ProgrammingError: syntax error at or near "ORDER" 88 89 LINE 3: indexname, array_agg(attname ORDER BY rnum),... 90 }}}