kivitendo/SL/DB/Manager/ContactDepartment.pm @ 7a803ab2
371ab59d | 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::ContactDepartment;
|
||||
use strict;
|
||||
use parent qw(SL::DB::Helper::Manager);
|
||||
30d53fc8 | Bernd Bleßmann | use SL::DB::Helper::Sorted;
|
||
371ab59d | Bernd Bleßmann | sub object_class { 'SL::DB::ContactDepartment' }
|
||
__PACKAGE__->make_manager_methods;
|
||||
30d53fc8 | Bernd Bleßmann | sub _sort_spec {
|
||
return ( default => [ 'description', 1 ],
|
||||
columns => { SIMPLE => 'ALL',
|
||||
map { ( $_ => "lower(contact_departments.$_)" ) } qw(description)
|
||||
});
|
||||
}
|
||||
371ab59d | Bernd Bleßmann | 1;
|