9 lines
187 B
Python
9 lines
187 B
Python
from django.db import models
|
|
|
|
|
|
class Lista(models.Model):
|
|
nombre = models.CharField(max_length=200, null=False, blank=False)
|
|
|
|
def __str__(self):
|
|
return f"<{self.nombre}>"
|