I use django_celery with connecting to Amazon Redshift. To migrate database, after \"makemigrations\" I used command \"python manage.py migrate\" and error message show up a
Are you trying to use Redshift as the backend database for your web application? That's a bad idea, Redshift is a data warehouse and as such individual query performance and latency are far from great, not to mention that Redshift doesn't enforce primary keys, which almost surely Django expects.
My recommendation, use PostgreSQL.