class ActiveRecordAnalyzer::Attribute::HasMany

Public Class Methods

association?() click to toggle source
# File lib/active_record_analyzer/attribute/has_many.rb, line 2
def self.association?
  true
end
has_many?() click to toggle source
# File lib/active_record_analyzer/attribute/has_many.rb, line 10
def self.has_many?
  true
end
one_to_many?() click to toggle source
# File lib/active_record_analyzer/attribute/has_many.rb, line 14
def self.one_to_many?
  false
end
simple_attribute?() click to toggle source
# File lib/active_record_analyzer/attribute/has_many.rb, line 6
def self.simple_attribute?
  false
end