Postgresql – Django: saving unique value without duplicate it
I'm trying to save unique name in the database but the problem I can save the same with different letters, for example I can save (IT, it, iT, It) I don't want to save it like that. Model: class Service(models.Model):…