Untitled
unknown
python
a year ago
856 B
21
Indexable
Para praticar to fazendo um exemplo que o professor colocou na internet o Cadastra-me
vcs podem dar suporte pra gente sobre este conteudodo youtube ,se puder me diz o motivo do erro
por favor
Se puder me informar onde esta o erro lhe agradeço muito
MODELS.PY
from django.db import models
class Usuarios(models.model):
Cod_usuario = models.autofield(primary_key=True)
Nome = models.textfield(max_lenght=90)
Idade = models.IntegerField()
Erro apos o -> python manage.py makemigrations
File "C:\#DevOpes@\Python\Codigos_Fontes\Praticas\Cadastr0\usuarios\models.py", line 3, in <module>
class Usuarios(models.model):
^^^^^^^^^^^^
AttributeError: module 'django.db.models' has no attribute 'model'. Did you mean: 'Model'?
PS C:\#DevOpes@\Python\Codigos_Fontes\Praticas\Cadastr0> Editor is loading...
Leave a Comment