# -*- coding: utf-8 -*-
class Corpspec < ActiveRecord::Base
  class << self
    def instance_method_already_implemented?(method_name)
      return true if method_name == 'connection'
      super
    end
  end
  establish_connection :request
  set_table_name "corpspec"

  belongs_to :agent, :foreign_key => "agent"
end
