Displaying 1 result from an estimated 1 matches for "content_job".
Did you mean:
content_for
2005 Nov 23
0
Another CTI question
...+--------------+
The above is legacy stuff and I can''t really change it right now as
it''s live; my goal is to get Rails to use the existing infrastructure
and then later make changes. My AR object is below:
class ContentJob < ActiveRecord::Base
set_table_name "content_job"
set_primary_key "content_id"
has_one :content, :dependent => true, :foreign_key => "id"
end
This works well. My tests allow me to find and update fine (working
on delete right now). I have noticed tho if I create a ContentJob
object via job = C...