MetaSetup Dateien aktualisiert
authorG. Richardson <information@kivitendo-premium.de>
Sun, 1 Feb 2015 20:59:36 +0000 (21:59 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Sun, 1 Feb 2015 20:59:36 +0000 (21:59 +0100)
SL/DB/MetaSetup/PriceRuleItem.pm
SL/DB/MetaSetup/RequirementSpecPart.pm
SL/DB/MetaSetup/TaxzoneChart.pm

index ade1d5a..d1fe506 100644 (file)
@@ -11,6 +11,8 @@ __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' },
index b29ae42..c4627ae 100644 (file)
@@ -9,8 +9,8 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('requirement_spec_parts');
 
 __PACKAGE__->meta->columns(
-  id                  => { type => 'serial', not_null => 1 },
   description         => { type => 'text', not_null => 1 },
+  id                  => { type => 'serial', not_null => 1 },
   part_id             => { type => 'integer', not_null => 1 },
   position            => { type => 'integer', not_null => 1 },
   qty                 => { type => 'numeric', not_null => 1, precision => 15, scale => 5 },
index 3bcdbce..d11587a 100644 (file)
@@ -9,12 +9,12 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('taxzone_charts');
 
 __PACKAGE__->meta->columns(
-  id                 => { type => 'serial', not_null => 1 },
-  taxzone_id         => { type => 'integer', not_null => 1 },
   buchungsgruppen_id => { type => 'integer', not_null => 1 },
-  income_accno_id    => { type => 'integer', not_null => 1 },
   expense_accno_id   => { type => 'integer', not_null => 1 },
+  id                 => { type => 'serial', not_null => 1 },
+  income_accno_id    => { type => 'integer', not_null => 1 },
   itime              => { type => 'timestamp', default => 'now()' },
+  taxzone_id         => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);