From a9523876aca013d65d21c849a8735f3b685f824f Mon Sep 17 00:00:00 2001 From: Zergling_man Date: Sat, 9 Oct 2021 20:58:50 +1100 Subject: [PATCH] Basic syntax errors. I swear I'm a professional. --- main/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/models.py b/main/models.py index 09a6d4c..50451af 100644 --- a/main/models.py +++ b/main/models.py @@ -2,7 +2,7 @@ from django.db import models # Create your models here. -class Page(models.Model) +class Page(models.Model): url=models.CharField(max_length=500) title=models.CharField(max_length=100) contents=models.TextField()