class Stairwell::Types::TableNameType

Public Instance Methods

quote() click to toggle source
# File lib/stairwell/types/table_name_type.rb, line 9
def quote
  connection.quote_table_name(value)
end
valid?() click to toggle source
# File lib/stairwell/types/table_name_type.rb, line 5
def valid?
  value.is_a?(String)
end