from django.db import models
# Create your models here.
class Article(models.Model):
article_title = models.CharField('название статьи', max_lenght = 255)
article_text = models.TextField('текст статьи')
pub_date = models.DateTimeField('дата публикации')
class Comment(models.Model):
article = models.ForeignKey(Article, on_delete = models.CASCADE)
author_name = models.CharField('имя файла', max_lenght = 50)
comment_text = models.CharField('текст комментария', max_lenght = 200)
Ошибка:
File "C:\python\Django\myfirst\myfirst\apps\articles\models.py", line 5, in Article
article_title = models.CharField('название статьи', max_lenght = 255)
File "C:\Users\galok\AppData\Local\Programs\Python\Python36\lib\site-packages\django\db\models\fields\_init__.py", line 984, in __init_
super().__init__(*args, **kwargs)
TypeError: __init__() got an unexpected keyword argument 'max_lenght'
-
Вопрос задан
-
490 просмотров