PGError:错误:必须是关系的所有者

发布于 2024-10-05 03:38:33 字数 240 浏览 1 评论 0原文

我将 Rails 应用程序与 PostgreSql 数据库一起使用。 我的应用程序与 PostgreSql 运行良好。 我想在服务器上运行迁移,我运行命令 RAILS_ENV=生产 rake db:migrate 然后我得到以下错误:

PGError:错误:必须是所有者 关系表名

我不明白为什么会出现这个错误? 请提出任何解决方案来解决此错误。

谢谢!

I have using rails application with PostgreSql database.
My application is working fine with PostgreSql.
I want to run my migration on server, I run a command RAILS_ENV=production rake db:migrate
then I get following error:

PGError:Error: must be owner of
relation table_name

I don't understand why this error occurs?
Please suggest any solution to resolve this error.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉薄对峙 2024-10-12 03:38:33

您想要更改表中的某些内容,但您没有执行此操作的权限。只有表的所有者可以这样做。

使用不同的数据库角色,即所有者角色,就可以了。

You want to change something in the table, but you don't have the permissions to do so. Only the owner of the table can do so.

Use a different database role, the owners role, and you're fine.

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