ORM migration index name mismatch. Can't drop existing index.

2022-05-16 Thread Konstantin Kuchkov
Context: In an app called "exams", I have a model named Capture which has a unique CharField named "uuid". I was trying to convert this field to a UUIDField and I was getting this error: django.db.utils.ProgrammingError: operator class "varchar_pattern_ops" does not accept data type uuid Lookin

Using OAuth1 from behind server firewall

2022-05-16 Thread Kristian Toole
Hi All, I have a Django app with a React Frontend. However, I'm struggling to figure out how to make the OAuth process work from behind a firewall. Any help would be HIGHLY appreciated! Please read below for details. I have a scenario where I'm building an app that is hosted on an ubuntu serve

Re: Migrating ManyToManyField to bigint?

2022-05-16 Thread Makrand Zare
First you need to create table structure in the PostgreSQL, then after import the data into the respective tables. Makrand Zare +919930102832 makzare1...@gmail.com On Sun, May 15, 2022, 1:55 PM Mike Dewhirst wrote: > On 14/05/2022 11:44 pm, Jeremy Lainé wrote: > > Hi! > > I'm currently looking

Re: django-admin-honeypot

2022-05-16 Thread Jeremy Lainé
A number of translation methods were deprecated in Django 3.0 (including ugettext_lazy) and remove in Django 4.0: https://docs.djangoproject.com/en/dev/releases/3.0/#deprecated-features-3-0 https://docs.djangoproject.com/en/dev/internals/deprecation/#deprecation-removed-in-4-0 The bottom line is

Re: Migrating ManyToManyField to bigint?

2022-05-16 Thread Mike Dewhirst
JeremyIf it was my project I would explicitly model the through tables.The other options are covered in the references you gave - which were news to me!CheersMike--(Unsigned mail from my phone) Original message From: Jeremy Lainé Date: 16/5/22 16:52 (GMT+10:00) To: Django use

Re: Migrating ManyToManyField to bigint?

2022-05-16 Thread Jeremy Lainé
Answering myself, AFAICT I need to create migrations which look like the following for every m2m intermediate table. The following assumes a "Book" model which has a ManyToMany relationship to a "Tag" model: from django.db import migrations class Migration(migrations.Migration): dependenc