STIを使用するアプリケーションには、EntryとSugarの2つのモデルがあります。これらは非常に単純です。
エントリー:
# == Schema Information
#
# Table name: entries
#
# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# user_id :integer
# type :string(255)
#
class Entry < ActiveRecord::Base
# attr_accessible :title, :body
belongs_to :user
end
砂糖(amount
注釈付きgemからのスキーマ情報が不足していることに注意してください):
# == Schema Information
#
# Table name: entries
#
# id :integer not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
# user_id :integer
# type :string(255)
#
class Sugar < Entry
attr_accessible :amount
end
実行してSugarモデルを作成し、rails g model Sugar amount:integer
それをEntryモデルのサブクラスになるように編集しました。生成された移行により、金額列が作成されました。
class CreateSugars < ActiveRecord::Migration
def change
create_table :sugars do |t|
t.integer :amount
t.timestamps
end
end
end
そして、その列は私のデータベースに存在します:
bridges_development=# \d sugars
Table "public.sugars"
Column | Type | Modifiers
------------+-----------------------------+-----------------------------------------------------
id | integer | not null default nextval('sugars_id_seq'::regclass)
amount | integer |
created_at | timestamp without time zone | not null
updated_at | timestamp without time zone | not null
Indexes:
"sugars_pkey" PRIMARY KEY, btree (id)
ただし、「amount」属性やメソッドは存在しないようです。次に例を示します。
1.9.2-p290 :002 > s.amount = 2
NoMethodError: undefined method `amount=' for #<Sugar:0xb84041c> (...)
1.9.2-p290 :003 > s = Sugar.new(:amount => 2)
ActiveRecord::UnknownAttributeError: unknown attribute: amount (...)
amount
属性と関連するメソッドが利用できないのはなぜですか?