27 lines
584 B
Python
27 lines
584 B
Python
|
from django.db import models
|
||
|
from django.contrib.auth.models import User
|
||
|
|
||
|
# Create your models here.
|
||
|
|
||
|
|
||
|
class Tarea(models.Model):
|
||
|
usuario = models.ForeignKey(
|
||
|
User,
|
||
|
on_delete=models.CASCADE,
|
||
|
null=True,
|
||
|
blank=True
|
||
|
)
|
||
|
titulo = models.CharField(max_length=200)
|
||
|
descripcion = models.TextField(
|
||
|
null=True,
|
||
|
blank=True
|
||
|
)
|
||
|
completo = models.BooleanField(default=False)
|
||
|
creado = models.DateTimeField(auto_now_add=True)
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.titulo
|
||
|
|
||
|
class Meta:
|
||
|
ordering = ['completo']
|