22 id_producto = models.AutoField(primary_key=
True)
23 nombre_producto = models.CharField(max_length=45)
24 descripcion = models.CharField(max_length=200)
25 precio = models.FloatField()
26 stock = models.IntegerField(default = 0 )
27 imageURL = models.CharField( max_length=100, null=
True )
28 id_categoria = models.ForeignKey(CategoriaProducto, models.DO_NOTHING)
33 verbose_name =
'Producto'
34 verbose_name_plural =
'Productos'