I have a model with a CharField that earlier had “unique” set to True, but wich now is changed to False. But when i try to save that field with something that exists django still throws an IntegrityError.
How can i change this behavior so that it allows non distinct values?
The database is MySQL.
Drop the unique index.