class ActiveGraph::Shared::TypeConverters::StringConverter

Public Class Methods

convert_type() click to toggle source
    # File lib/active_graph/shared/type_converters.rb
101 def convert_type
102   String
103 end
db_type() click to toggle source
    # File lib/active_graph/shared/type_converters.rb
105 def db_type
106   String
107 end
to_db(value) click to toggle source
    # File lib/active_graph/shared/type_converters.rb
109 def to_db(value)
110   value.to_s
111 end
Also aliased as: to_ruby
to_ruby(value)
Alias for: to_db