diff --git a/db.sqlite3 b/db.sqlite3 index 6da740e..b8615b6 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/polls/admin.py b/polls/admin.py index 8c38f3f..1f194a0 100644 --- a/polls/admin.py +++ b/polls/admin.py @@ -1,3 +1,6 @@ from django.contrib import admin # Register your models here. +from .models import Question + +admin.site.register(Question) \ No newline at end of file