Revision f228ac9b
Von Moritz Bunkus vor mehr als 5 Jahren hinzugefügt
SL/DB/MetaSetup/Business.pm | ||
---|---|---|
11 | 11 |
__PACKAGE__->meta->columns( |
12 | 12 |
customernumberinit => { type => 'text' }, |
13 | 13 |
description => { type => 'text' }, |
14 |
discount => { type => 'float', scale => 4 }, |
|
14 |
discount => { type => 'float', precision => 4, scale => 4 },
|
|
15 | 15 |
id => { type => 'integer', not_null => 1, sequence => 'id' }, |
16 | 16 |
itime => { type => 'timestamp', default => 'now()' }, |
17 | 17 |
mtime => { type => 'timestamp' }, |
Auch abrufbar als: Unified diff
Rose: MetaSetups bzgl. Fließkommazahlen erneuert