Revision 8ec266d5
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
SL/DB/MetaSetup/PartClassification.pm | ||
---|---|---|
12 | 12 |
abbreviation => { type => 'text' }, |
13 | 13 |
description => { type => 'text' }, |
14 | 14 |
id => { type => 'serial', not_null => 1 }, |
15 |
report_separate => { type => 'boolean', default => 'false' }, |
|
16 |
used_for_purchase => { type => 'boolean', default => 'true' }, |
|
17 |
used_for_sale => { type => 'boolean', default => 'true' }, |
|
15 |
report_separate => { type => 'boolean', default => 'false', not_null => 1 },
|
|
16 |
used_for_purchase => { type => 'boolean', default => 'true', not_null => 1 },
|
|
17 |
used_for_sale => { type => 'boolean', default => 'true', not_null => 1 },
|
|
18 | 18 |
); |
19 | 19 |
|
20 | 20 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
Auch abrufbar als: Unified diff
MetaSetup-Update zu DB-Upgrade »part_classifications.sql«