class Produtos(models.Model):
#id = models.AutoField(primary_key=True)
nomeproduto = models.CharField(max_length=50, blank=True, null=True)
quantproduto = models.CharField(max_length=30, blank=False, unique=True)
status = models...
asked by
22.06.2018 / 15:43