mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-05 06:04:49 +00:00
15 lines
335 B
Python
15 lines
335 B
Python
|
|
from django.db import models
|
||
|
|
from django.utils.encoding import python_2_unicode_compatible
|
||
|
|
|
||
|
|
|
||
|
|
@python_2_unicode_compatible
|
||
|
|
class Task(models.Model):
|
||
|
|
text = models.TextField()
|
||
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
||
|
|
|
||
|
|
class Meta:
|
||
|
|
ordering = ['created_at']
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return self.text
|