mirror of
https://github.com/kennethreitz-archive/django-todo.git
synced 2026-06-20 23:30:59 +00:00
5 lines
149 B
Python
5 lines
149 B
Python
from django.db import models
|
|
|
|
class Task(models.Model):
|
|
name = models.CharField(max_length=200)
|
|
finished = models.BooleanField(default=False) |