# == Schema Information
#
# Table name: ap_metadata
#
#  id                  :integer          not null, primary key
#  project_name        :string(255)
#  location_name       :string(255)
#  notes               :text
#  router_inventory_id :integer
#  latitude            :string(255)
#  longitude           :string(255)
#  scanned_data        :text
#  created_at          :datetime
#  updated_at          :datetime
#

class ApMetadata < ActiveRecord::Base
  has_many :medias, as: :attachable
  belongs_to :router_inventory

  serialize :scanned_data, Array
end
