]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/Object.pm
Title erst nach create_invoice setzen, dadrin wird der typ sanitized.
[kivitendo-erp.git] / SL / DB / Object.pm
index 9ac7644f9ae1dc0632f11c90ddf6a4eaa2513706..71e0a3939b3f76b147aaa89eb8db49c0c9706f50 100644 (file)
@@ -2,7 +2,6 @@ package SL::DB::Object;
 
 use strict;
 
-use Readonly;
 use Rose::DB::Object;
 use List::MoreUtils qw(any);
 
@@ -41,7 +40,7 @@ sub _get_manager_class {
   return $class->meta->convention_manager->auto_manager_class_name($class);
 }
 
-Readonly my %text_column_types => (text => 1, char => 1, varchar => 1);
+my %text_column_types = (text => 1, char => 1, varchar => 1);
 
 sub assign_attributes {
   my $self       = shift;