use parent statt use base in MetaSetup
[kivitendo-erp.git] / SL / DB / MetaSetup / PriceRuleItem.pm
index ade1d5a..f1804a6 100644 (file)
@@ -4,13 +4,15 @@ package SL::DB::PriceRuleItem;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('price_rule_items');
 
 __PACKAGE__->meta->columns(
   custom_variable_configs_id => { type => 'integer' },
   id                         => { type => 'serial', not_null => 1 },
+  itime                      => { type => 'timestamp' },
+  mtime                      => { type => 'timestamp' },
   op                         => { type => 'text' },
   price_rules_id             => { type => 'integer', not_null => 1 },
   type                       => { type => 'text' },