class User < ActiveRecord::Base
  has_one :spec
  has_one :faq
  has_one :blog
  has_many :comments, :order => "created_at", :dependent => :destroy
  .
  .
  .

