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