- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
错误信息:PG::UndefinedTable: ERROR: relation "resolvers"does not exist
这是吐出错误的迁移:
class AddResolverRefToBugs < ActiveRecord::Migration[5.0]
def change
add_reference :bugs, :resolver, foreign_key: true
end
end
现在,我知道没有 Resolver 表,因为实际的表是 User 表; resolver_id 是我的 foreign_key 列。因此,对于我的其中一个引用用户模型的模型,我只有一个 resolver_id
字段,而且我的应用程序在开发环境中没有任何问题。
class Bug < ApplicationRecord
# Associations
belongs_to :user
belongs_to :resolver, class_name: 'User', optional: true
我是否应该在某处指定一些内容,以便 PG 知道 :resolver(resolver_id 列)实际上是 Users 表?
我的错误消息包含以下行:: ALTER TABLE "bugs"ADD CONSTRAINT "fk_rails_2d3f1765bb"FOREIGN KEY ("resolver_id") REFERENCES "resolvers"("id")
所以它看起来确实引用了错误的东西。
在一个相关的StackOverflow question , 我注意到他/她有“嵌套”引用...
create_table :english_grades do |t|
t.references :teacher, references: :users
t.references :student, references: :users
...指定用户的位置。我不确定这在这里是否相关。
大概我的模式我的迁移可能看起来像:
t.references :resolver, references: users
docs for add_references别提这件事。
那个人还在迁移中指定了外键,我确实看到了从外键字段到实际表的链接。大概我需要这样的东西:
add_foreign_key :bugs, :users, column: :resolver_id
但根据我在网上阅读的内容,没有必要使用add_foreign_key
。
如有任何解释,我将不胜感激。
注意:有些人建议先运行 db:reset,但这对我不起作用,因为我得到了 error this person is getting。 .
最佳答案
我仍然不确定为什么 Postgres 会在此处抛出错误而 Sqlite 不会。但是,将解析器列正确引用到用户表的一种方法是使用 foreign_key: {to_table::users}:
add_reference :bugs, :resolver, foreign_key: {to_table: :users}
在摆脱原来的 add_reference
迁移之后。 PG 在用这条线进行迁移时没有提示。
( rails 5)
关于ruby-on-rails - Heroku : undefined table/relation doesn't exist for foreign key 上的第一次数据库迁移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43838091/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!