2 # A representation of a Country or dependent area, consisting of a name and
3 # ISO 3166-1 geographic code.
6 include DataMapper::Resource
8 property :code, String, :key => true, :length => 2 # ISO 3166-1 alpha-2
9 property :name, String, :length => 100, :nullable => false, :unique => true
13 alias :provinces :states