関連するデータベース テーブルには、次のスキーマがあります。
sqlite> .schema structures
CREATE TABLE structures(
struct_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
batch_id INTEGER,
tag TEXT,
input_tag TEXT,
FOREIGN KEY (batch_id) REFERENCES batches(batch_id) DEFERRABLE INITIALLY DEFERRED);
sqlite> .schema residues
CREATE TABLE residues(
struct_id INTEGER NOT NULL,
resNum INTEGER NOT NULL,
name3 TEXT NOT NULL,
res_type TEXT NOT NULL,
FOREIGN KEY (struct_id) REFERENCES structures(struct_id) DEFERRABLE INITIALLY DEFERRED,
PRIMARY KEY (struct_id, resNum));
私は次のモデルを持っています:
class Structure < ActiveRecord::Base
set_table_name "structures"
self.primary_key = "struct_id"
attr_accessible :struct_id, :batch_id, :input_tag
has_many :residues
end
class Residue < ActiveRecord::Base
self.primary_keys :struct_id, :resnum
belongs_to :structure, :foreign_key => 'struct_id'
attr_accessible :name3, :res_type, :resnum
end
構造ショーで私が持っている:
<h2>Residues</h2>
<% @structure.residues.each do |residue| %>
<p>
<b>Residue number:</b>
<%= residue.resnum %>
</p>
<p>
<b>Residue type:</b>
<%= residue.res_type %>
</p>
<% end %>
ただし、構造を表示しようとすると、次のエラーが発生します。
SQLite3::SQLException: no such column: residues.structure_id
データベースで struct_id ではなく、structure_id が検索されるのはなぜですか? 私の外部キーが尊重されていないようです。