This is really a question about naming conventions.
I have a model called PromotedEvents
The file is called promoted_events.rb
I created the table wi
If you are an extreme rails n00b like me, then you will want to remember to create a class definition for your newly created table and place it in app/models.
It would go like
class LargeCat < ActiveRecord::Base belongs_to :zoo end