I have a model like the below. No matter which url is input, I wanna remove protocols in each url such as http:// or https:// before it is stored into database. Is there any filtering feature for that?
class Store(models.Model):
url = models.CharField(max_length=100)
...