On Sep 17, 2:12 am, DanielMedia <[email protected]> wrote:
> I'm getting the following error: > > Table 'blog_development.app_models' doesn't exist > > My question is, how do I tell Rails not to look for a table named > "app_models" AND am I even taking the right approach here? Is there a > better way to do this? You can set self.abstract_class = true on AppModel to tell rails that AppModel is an abstract class with no underlying table. Fred -- 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.

