Changes between Initial Version and Version 1 of Ticket #28736


Ignore:
Timestamp:
Oct 24, 2017, 4:53:16 AM (7 years ago)
Author:
Kester Habermann
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28736 – Description

    initial v1  
    11manage.py migrate fails when these are added to INSTALLED_APPS:
    2   'rest_framework',
    3   'rest_framework.authtoken',
     2'rest_framework',
     3'rest_framework.authtoken',
    44
    55The problem is present when using postgresql-8.4.20 (RHEL 6)
     
    20202) edit mysite/mysite/settings.py
    2121add to INSTALLED_APPS = [ ]:
    22    'rest_framework',
    23    'rest_framework.authtoken',
     22'rest_framework',
     23'rest_framework.authtoken',
    2424change DATABASES
    2525to a PostgreSQL 8.4.20 database.
     
    2727
    2828Full output
     29{{{
    2930python manage.py migrate
    3031Operations to perform:
     
    8788django.db.utils.ProgrammingError: syntax error at or near "ORDER"
    8889LINE 3:                 indexname, array_agg(attname ORDER BY rnum),...
     90}}}
Back to Top