module Sequel::Plugins::SingularTableNames::ClassMethods
Public Instance Methods
implicit_table_name()
click to toggle source
Returns the implicit table name for the model class, which is the demodulized, underscored, name of the class.
Artist.implicit_table_name # => :artist Foo::ArtistAlias.implicit_table_name # => :artist_alias
# File lib/sequel/plugins/singular_table_names.rb, line 27 def implicit_table_name underscore(demodulize(name)).to_sym end