cc74ccc8cf4158735145b8dbe13d8127274c9560
[kivitendo-erp.git] / SL / DB / Manager / CustomDataExportQuery.pm
1 package SL::DB::Manager::CustomDataExportQuery;
2
3 use strict;
4
5 use parent qw(SL::DB::Helper::Manager);
6
7 use SL::DB::Helper::Sorted;
8
9 sub object_class { 'SL::DB::CustomDataExportQuery' }
10
11 __PACKAGE__->make_manager_methods;
12
13 sub _sort_spec {
14   return ( default => [ 'name', 1 ],
15            name    => 'lower(custom_data_export_queries.name)',
16            columns => { SIMPLE => 'ALL' });
17 }
18
19 1;