Consolidation of work on slicefiying application with original app
[merb_mart.git] / app / models / country.rb
blob45eda3102bfc55d8e828be036975b9b5bf11147c
2 # A representation of a Country or dependent area, consisting of a name and
3 # ISO 3166-1 geographic code.
5 class Country
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
11   has n, :states
13   alias :provinces :states
14 end