field-description Questions
2
I have a django model which contains a description field:
class Product(models.Model):
name = models.CharField(max_length="125")
description = models.TextField()
class ProductForm(ModelForm):
...
Breastfeed asked 20/11, 2013 at 12:24
4
Solved
I can see plenty of posts about where the field description extended property lives and how I can get it, but nothing about adding these at the CREATE TABLE stage.
I'm dynamically creating tables ...
Fulvous asked 31/12, 2009 at 12:42
1
© 2022 - 2024 — McMap. All rights reserved.