微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – 导致UndefinedTable错误的命名空间模型

我有以下命名空间模型:

# app/models/face_data/pool_membership.rb
class FaceData::PoolMembership < ActiveRecord::Base
  self.table_name = 'face_data_pool_memberships'

  belongs_to :pool,class_name: 'FaceData::Pool'
  belongs_to :photo
end

# app/models/face_data/pool.rb
class FaceData::Pool < ActiveRecord::Base
  self.table_name = 'face_data_pools'
end

# app/models/photo.rb
class Photo < ActiveRecord::Base
  has_many :pool_memberships,class_name: 'FaceData::PoolMembership'
  has_many :pools,through: :pool_memberships,class_name: 'FaceData::Pool'
end

数据库架构如下:

# db/schema.rb
create_table "face_data_pool_memberships",force: true do |t|
  # omitted
end

create_table "face_data_pools",force: true do |t|
  # omitted
end

该应用程序运行正常但在启动时(服务器,rake任务等)我收到以下错误

PG::UndefinedTable: ERROR:  relation "pool_memberships" does not exist
 LINE 5:                WHERE a.attrelid = '"pool_memberships"'::regc...
 ^
 :               SELECT a.attname,format_type(a.atttypid,a.atttypmod),pg_get_expr(d.adbin,d.adrelid),a.attnotnull,a.atttypid,a.atttypmod
 FROM pg_attribute a LEFT JOIN pg_attrdef d
 ON a.attrelid = d.adrelid AND a.attnum = d.adnum
 WHERE a.attrelid = '"pool_memberships"'::regclass
 AND a.attnum > 0 AND NOT a.attisdropped
 ORDER BY a.attnum

它只发生在生产中(不在开发环境中),看起来它在运行时没有效果(应用程序继续运行良好 – 生成查询使用正确的表名).

请注意,应用程序中还有其他FaceData命名空间模块和类.将table_name_prefix显式设置为空字符串不会使错误消失.

我的猜测是它与加载文件的顺序或has_many:通过关联有关.有小费吗?

解决方法

为了避免所有这些问题,你可以做一件事.使用这些内容创建app / models / face_data.rb

module FaceData
      def self.table_name_prefix
        'face_data_'
      end
    end

这样,您就不再需要为在同一范围内定义的每个类编写self.table_name.如果您有任何疑问,请告诉我.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐