__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' },
__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 },
__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' ]);