kivitendo/SL/DB/Manager/ContactTitle.pm @ 95b1e9f5
3a83d463 | Bernd Bleßmann | # This file has been auto-generated only because it didn't exist.
|
||
# Feel free to modify it at will; it will not be overwritten automatically.
|
||||
package SL::DB::Manager::ContactTitle;
|
||||
use strict;
|
||||
use parent qw(SL::DB::Helper::Manager);
|
||||
b8c7ffdf | Bernd Bleßmann | use SL::DB::Helper::Sorted;
|
||
3a83d463 | Bernd Bleßmann | sub object_class { 'SL::DB::ContactTitle' }
|
||
__PACKAGE__->make_manager_methods;
|
||||
b8c7ffdf | Bernd Bleßmann | sub _sort_spec {
|
||
return ( default => [ 'description', 1 ],
|
||||
columns => { SIMPLE => 'ALL',
|
||||
map { ( $_ => "lower(contact_titles.$_)" ) } qw(description)
|
||||
});
|
||||
}
|
||||
3a83d463 | Bernd Bleßmann | 1;
|