class CurrenciesCatalog(md.Model): name=md.CharField(max_length=255) code_w=md.CharField(max_length=255) code_n=md.CharField(max_length=255) dot=md.IntegerField() rel=md.BooleanField(default=True) def __str__(self): return self.name class CurrenciesData(md.Model): currency=md.ForeignKey(CurrenciesCatalog, md.DO_NOTHING) exchange=md.DecimalField(max_digits=20,decimal_places=10) update_date=md.DateTimeField() товар привезен CurrenciesCatalog
понятно или требует пояснений?
Обсуждают сегодня