First - your models should be singularly named. Use Country instead
of Countries, as your model is of a single country not a group of
countries.
class Country < ActiveRecord::Base
has_one :countrydescription
end
class CountryDescription < ActiveRecord::Base
belongs_to :country
end
I'd be curious why you're storing the description of the country in a
separate table instead of along with the Country model? Even if it's
meta data I would think this is better kept with the Country model,
and just have a text field called "description" it'd keep things
simpler.