Cannot cast type bigint to UUID in Django migration when migrating from SQLite to PostgreSQL
I’m encountering an issue while migrating my Django project from SQLite to PostgreSQL. I had previously set the id field to UUID in SQLite, but now when applying the migration in PostgreSQL, I receive the following error:
`django.db.utils.ProgrammingError: cannot cast type bigint to uuid
LINE 1: …ompany_company” ALTER COLUMN “id” TYPE uuid USING “id”::uuid
^