我收到以下错误:
PG::ForeignKeyViolation: ERROR: update or delete on table "sites" violates foreign key constraint "fk_rails_b1cb5ea385" on table "domains" DETAIL: Key (id)=(1) is still referenced from table "domains". : DELETE FROM "sites" WHERE "sites"."id" = $1
这是因为有一个域记录引用了被删除的站点,我知道这是因为手动删除site_id
会导致错误消失(当然这不是这样做的方法) ,这只是为了检查目的而完成的。
但是从模型中可以看出:
class Site < ApplicationRecord
enum environment: %i{development staging production}
belongs_to :project
belongs_to :client
has_one :domain, dependent: :nullify
has_many :servers, through: :domain
end
我确实要求主动记录使域名无效(虽然我正在考虑直接销毁它,但这与此问题无关)。
此关联也用于Server
:
class Server < ApplicationRecord
before_save :set_domains, if: :sites_id_changed?
has_many :domains, dependent: :nullify
has_many :sites, through: :domains
def clients
self.sites.map(&:client).flatten
end
def set_domains
domains = get_domains Site.where(id: self.site_ids).all
domains += get_domains domains,:domains
self.domains = domainsprimary_domains
end
private
def get_domains(object,meth=:domain)
objects.first.blank? ? [] : objects.map(&meth).flatten
end
end
和Domain
:
class Domain < ApplicationRecord
alias_attribute :aliases, :domains
alias_attribute :alias_of, :domain
has_many :domains, dependent: :nullify
belongs_to :domain, optional: true
belongs_to :site, optional: true
belongs_to :server, optional: true
def alias?
!self.alias_of.blank?
end
accepts_nested_attributes_for :domains, allow_destroy: true
end
为什么尽管被问到(尽管被问到(至少看来)这样做,但为什么尽管被要求这样做是活动记录而不是取消域表中对站点表的引用?
答案 0 :(得分:1)
过去我遇到过类似的事情。您是正确的,这是您遇到数据库级外键约束的情况。
如果您正在使用PG,例如,here are some helpful docs,其中包含有关约束的更多信息。
就解决您的实际问题而言,SO响应帮助我克服了这个错误并让事情再次发挥作用 I found here.
让我知道这是否有效/有帮助! :)