URI: 
       line_attribute.rb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
  HTML git clone git://jay.scot/warvox
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       line_attribute.rb (476B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: line_attributes
            4 #
            5 #  id           :integer          not null, primary key
            6 #  created_at   :datetime
            7 #  updated_at   :datetime
            8 #  line_id      :integer          not null
            9 #  project_id   :integer          not null
           10 #  name         :text             not null
           11 #  value        :binary           not null
           12 #  content_type :string(255)      default("text")
           13 #
           14 
           15 class LineAttribute < ApplicationRecord
           16   belongs_to :line
           17   belongs_to :project
           18 end