update model

This commit is contained in:
jp.av.dev 2020-11-15 02:19:35 -03:00
parent 617771f4d5
commit 73052ad7d4

View File

@ -1,12 +1,14 @@
from django.db import models
class Clientes(models.Model):
nombre = models.CharField(max_length = 30)
direccion = models.CharField(max_length=50)
email = models.EmailField()
direccion = models.CharField(max_length = 50, verbose_name = "La Direcc.:")
email = models.EmailField(blank = True, null = True)
fono = models.CharField(max_length = 10)
def __str__(self):
return (self.nombre)
class Articulos(models.Model):
nombre = models.CharField(max_length = 30)
@ -16,9 +18,8 @@ class Articulos(models.Model):
def __str__(self):
return 'Nombre: %s, Depto. %s, Precio $ %s' % (self.nombre, self.seccion, self.precio)
class Pedidos (models.Model):
numero = models.IntegerField()
fecha = models.DateField()
entregado = models.BooleanField()