Revision a3511b2d
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/DB/MetaSetup/Customer.pm | ||
---|---|---|
20 | 20 |
city => { type => 'varchar', length => 75 }, |
21 | 21 |
contact => { type => 'text' }, |
22 | 22 |
country => { type => 'varchar', length => 75 }, |
23 |
creditlimit => { type => 'numeric', default => '0', precision => 5, scale => 15 },
|
|
23 |
creditlimit => { type => 'numeric', default => '0', precision => 15, scale => 5 },
|
|
24 | 24 |
currency_id => { type => 'integer', not_null => 1 }, |
25 | 25 |
customernumber => { type => 'text' }, |
26 | 26 |
delivery_term_id => { type => 'integer' }, |
... | ... | |
28 | 28 |
department_2 => { type => 'varchar', length => 75 }, |
29 | 29 |
depositor => { type => 'text' }, |
30 | 30 |
direct_debit => { type => 'boolean', default => 'false' }, |
31 |
discount => { type => 'float', precision => 4 },
|
|
31 |
discount => { type => 'float', scale => 4 },
|
|
32 | 32 |
email => { type => 'text' }, |
33 | 33 |
fax => { type => 'varchar', length => 30 }, |
34 | 34 |
greeting => { type => 'text' }, |
Auch abrufbar als: Unified diff
MetaSetups mit RDBO >= 0.809 neu bauen
Siehe 6c22ee7eb1f64431bade6f361259737ed23b7ecc für die Erläuterung.