如何从django模型创建双重和长文本字段

如何使用
django模型在
mysql中创建一个双字段.我遇到这个错误,以及如何使用django创建一个longtext数据类型

class Test(models.Model):
   maxcount = models.DoubleField(null=True) ## double DEFAULT NULL,
   cs = models.TextField()#longtext,

错误:

    maxcount = models.DoubleField(null=True) ##double DEFAULT NULL,
    AttributeError: 'module' object has no attribute 'DoubleField'

最佳答案
https://docs.djangoproject.com/en/1.8/ref/models/fields/#bigintegerfield

https://docs.djangoproject.com/en/1.8/ref/models/fields/#decimalfield

https://docs.djangoproject.com/en/dev/ref/models/fields/#floatfield

如果需要Integer和decimal字段,请使用big int.
https://docs.djangoproject.com/en/1.8/ref/models/fields/#charfield用于Char字段并设置max和min参数

点赞