管理.py同步数据库错误,postgres_psycopg2
我正在尝试为 django 安装购物车插件,但在运行 manage.pysyncdb 时遇到问题。
运行时,它会安装 4 个表,然后我收到以下错误消息:
文件 “(mypath)/django/db/backends/postgresql_psycopg2/base.py”, 第44行,执行中 返回 self.cursor.execute(query, args) django.db.utils.DatabaseError: 数字刻度 127 必须介于 0 之间 精度10
我猜测 models.py 很可能有问题,但我不知道该看哪一行。
有人遇到过类似的事情吗?
I'm trying to install a shopping cart plugin for django but having a problem when I run manage.py syncdb.
When run, it installs 4 tables, then I'm getting the following error message:
File
"(mypath)/django/db/backends/postgresql_psycopg2/base.py",
line 44, in execute
return self.cursor.execute(query, args) django.db.utils.DatabaseError:
NUMERIC scale 127 must be between 0
and precision 10
I'm guessing that there is most likely a problem with the models.py but I don't know what line to look at.
has anyone ever run into anything similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您有一个定义了无效比例的数字字段。您是否混淆了规模和精度?
Sounds like you have a numeric field with an invalid scale defined. Did you perhaps mix up scale and precision?