Estou com um problema na hora de executar o python manage.py makemigrations após a execução deste comando ele acusa um TypeError: init() got an unexpected keyword argument 'max_length'
segue meu código do models.py para analisarem
from django.db import models
class Perfil(models.Model):
nome = models.CharField(max_lenght=255,null=False)
email = models.CharField(max_lenght=255,null=False)
telefone = models.CharField(max_lenght=15,null=False)
nome_empresa = models.CharField(max_lenght=255,null=False)