Cleaned up properties, many-to-one associations
[merb_mart.git] / app / models / state.rb
blobcd4ef56a7ca6b19cd180a234ad8cd93284f6ff83
2 # A representation of a State or Province (e.g. New York/NY, Alberta, Northern
3 # Ireland, etc.) for those countries that use them as an administrative 
4 # division.
6 class State
8   include DataMapper::Resource
10   property :id,           Fixnum, :serial => true
11   property :abbr,         String, :length => 10
12   property :name,         String, :length => 50, :nullable => false
13   property :country_code, String  # foreign-key
14   
15   many_to_one :country
16   
17 end