kivitendo/SL/DB/CsvImportProfileSetting.pm @ e7354364
c2cf302a | Moritz Bunkus | # 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::CsvImportProfileSetting;
|
||||
use strict;
|
||||
67643d03 | Sven Schöling | use Rose::DB::Object::Helpers qw(clone);
|
||
c2cf302a | Moritz Bunkus | |||
f64be46d | Sven Schöling | require SL::DB::MetaSetup::CsvImportProfileSetting;
|
||
2d7e4203 | Sven Schöling | __PACKAGE__->meta->initialize;
|
||
c2cf302a | Moritz Bunkus | __PACKAGE__->meta->make_manager_class;
|
||
67643d03 | Sven Schöling | # Helpers' clone_and_reset also kills compund keys like in this case kay+id
|
||
sub clone_and_reset {
|
||||
my $clone = $_[0]->clone;
|
||||
$clone->id(undef);
|
||||
return $clone;
|
||||
}
|
||||
c2cf302a | Moritz Bunkus | 1;
|