Converted view ERB syntax to Haml
[merb_mart.git] / app / models / state.rb
blobd09d79c12f647e08657a6c52aade00aa0a181c68
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   belongs_to :country
16   
17 end