kivitendo/SL/DB/Manager/Greeting.pm @ 02fff93e
041274ee | 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::Greeting;
|
||||
use strict;
|
||||
use parent qw(SL::DB::Helper::Manager);
|
||||
c2e49890 | Bernd Bleßmann | use SL::DB::Helper::Sorted;
|
||
041274ee | Bernd Bleßmann | sub object_class { 'SL::DB::Greeting' }
|
||
__PACKAGE__->make_manager_methods;
|
||||
c2e49890 | Bernd Bleßmann | sub _sort_spec {
|
||
return ( default => [ 'description', 1 ],
|
||||
columns => { SIMPLE => 'ALL',
|
||||
map { ( $_ => "lower(greetings.$_)" ) } qw(description)
|
||||
});
|
||||
}
|
||||
041274ee | Bernd Bleßmann | 1;
|