質問編集履歴
1
コードを更新しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
class Post(models.Model):
|
28
28
|
|
29
|
-
title
|
29
|
+
title = models.CharField(max_length=255)
|
30
30
|
|
31
31
|
categories = models.ManyToManyField("Category", related_name="posts")
|
32
32
|
|