Hi,

I am using 'set_table_name' in all my models, I want one abstract class
which extends from ActiveRecord::Base and all my model should extends
from this abstract class. i will write setter method in abstrct class
which will set table name also i am able to override that method in my
model. my question is this is possible in rails? how to implement this
in rails?

e.g:-

class Abstract < ActiveRecord::Base
  def set_table_name(table_name)
     return "prefix" + table_name
  end
end

class Photo < Abstract
    ? From here hoe to make a call for set_table_name
end
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to