gpt4 book ai didi

ruby-on-rails - ruby on rails 中的复合主键

转载 作者:数据小太阳 更新时间:2023-10-29 07:23:57 26 4
gpt4 key购买 nike

我正在尝试使用 http://compositekeys.rubyforge.org/为了在我的 activerecord 模型中有复合主键。

我已经将 gem 'composite_primary_keys', '=3.1.0' 添加到我的 Gemfile 中。现在我正尝试按如下方式设置我的第一个模型类。

class StringProperty < ActiveRecord::Base
self.primary_keys :entity_id, :property_id
set_table_name "problem.string_property"
attr_accessible :entity_id, :property_id, :value
end

但我得到的只是: enter image description here

我做错了什么? :(

最佳答案

我认为以下将起作用。

require 'composite_primary_keys'
class StringProperty < ActiveRecord::Base
self.primary_keys = :entity_id, :property_id
set_table_name "problem.string_property"
attr_accessible :entity_id, :property_id, :value
end

关于ruby-on-rails - ruby on rails 中的复合主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13856137/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com