| Module | Sequel::Plugins::SingularTableNames::ClassMethods |
| In: |
lib/sequel/plugins/singular_table_names.rb
|
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
27: def implicit_table_name
28: underscore(demodulize(name)).to_sym
29: end