ActiveRecord モデル (pos) のフィールドを、値 1+ これまでの最高値に割り当てようとしています。以下は、どちらのバージョンでも、無限ループを生成します。理由がわかりません。見えますか?
class Question < ActiveRecord::Base
attr_accessible :text, :pos, :data_type, :active
has_many :values
belongs_to :program
after_initialize :assign_pos
def row_label
text
end
def self.highest_pos
self.order("pos DESC").first
end
def assign_pos
puts "********* #{Question.highest_pos + 1}" # option 1
self.pos = Question.highest_pos + 1 # option 2
end
end