X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9589ecd776677cdeb2fbaf8de211963d24cf5aa1..835e3fd9a0114f9aec38af6c98f69a66cec61bdc:/SL/DB/MetaSetup/PriceRule.pm diff --git a/SL/DB/MetaSetup/PriceRule.pm b/SL/DB/MetaSetup/PriceRule.pm index 00469ad12..a3e70288a 100644 --- a/SL/DB/MetaSetup/PriceRule.pm +++ b/SL/DB/MetaSetup/PriceRule.pm @@ -9,15 +9,16 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('price_rules'); __PACKAGE__->meta->columns( - discount => { type => 'numeric', precision => 15, scale => 5 }, - id => { type => 'serial', not_null => 1 }, - itime => { type => 'timestamp' }, - mtime => { type => 'timestamp' }, - name => { type => 'text' }, - obsolete => { type => 'boolean', default => 'false', not_null => 1 }, - price => { type => 'numeric', precision => 15, scale => 5 }, - priority => { type => 'integer', default => 3, not_null => 1 }, - type => { type => 'text' }, + discount => { type => 'numeric', precision => 15, scale => 5 }, + id => { type => 'serial', not_null => 1 }, + itime => { type => 'timestamp' }, + mtime => { type => 'timestamp' }, + name => { type => 'text' }, + obsolete => { type => 'boolean', default => 'false', not_null => 1 }, + price => { type => 'numeric', precision => 15, scale => 5 }, + priority => { type => 'integer', default => 3, not_null => 1 }, + reduction => { type => 'numeric', precision => 15, scale => 5 }, + type => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);