Hi,
newbie-question:
2 tables countries countrydescription (additional info > metadata etc. )
Models
class countries < ActiveRecord::Base has_one :countrydescription end
class countrydescription < ActiveRecord::Base has_one :country end
Is this the correct way?
Nope. assuming it's a 1 to 1 relation ship, one of those has_ones
should be a belongs_to (the one where the foreign key lives)
Fred