finished the front for the task manager
This commit is contained in:
9
back/testapp/models.py
Normal file
9
back/testapp/models.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
|
||||
class Task (models.Model) :
|
||||
task_text = models.CharField(max_length=1024)
|
||||
pub_date = models.DateTimeField("date published")
|
||||
done = models.BooleanField(default=False)
|
||||
|
||||
Reference in New Issue
Block a user