state.rb
377 Bytes
# Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved.
# == Schema Information
#
# Table name: states
#
# id :integer(4) not null, primary key
# uf :string(255)
# name :string(255)
# created_at :datetime not null
# updated_at :datetime not null
#
class State < ActiveRecord::Base
has_many :cities
end