|
# 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);
|
|
|
|
use SL::DB::Helper::Sorted;
|
|
|
|
sub object_class { 'SL::DB::Greeting' }
|
|
|
|
__PACKAGE__->make_manager_methods;
|
|
|
|
sub _sort_spec {
|
|
return ( default => [ 'description', 1 ],
|
|
columns => { SIMPLE => 'ALL',
|
|
map { ( $_ => "lower(greetings.$_)" ) } qw(description)
|
|
});
|
|
}
|
|
|
|
1;
|