管理.py同步数据库错误,postgres_psycopg2

发布于 2024-09-25 04:14:48 字数 366 浏览 4 评论 0原文

我正在尝试为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长伴 2024-10-02 04:14:48

听起来您有一个定义了无效比例的数字字段。您是否混淆了规模和精度?

Sounds like you have a numeric field with an invalid scale defined. Did you perhaps mix up scale and precision?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文