Revision f49ad7f1
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
SL/DB/MetaSetup/PeriodicInvoicesConfig.pm | ||
---|---|---|
10 | 10 |
table => 'periodic_invoices_configs', |
11 | 11 |
|
12 | 12 |
columns => [ |
13 |
id => { type => 'integer', not_null => 1, sequence => 'id' }, |
|
14 |
oe_id => { type => 'integer', not_null => 1 }, |
|
15 |
periodicity => { type => 'varchar', length => 10, not_null => 1 }, |
|
16 |
print => { type => 'boolean', default => 'false' }, |
|
17 |
printer_id => { type => 'integer' }, |
|
18 |
copies => { type => 'integer' }, |
|
19 |
active => { type => 'boolean', default => 'true' }, |
|
20 |
start_date => { type => 'date' }, |
|
21 |
ar_chart_id => { type => 'integer', not_null => 1 }, |
|
13 |
id => { type => 'integer', not_null => 1, sequence => 'id' }, |
|
14 |
oe_id => { type => 'integer', not_null => 1 }, |
|
15 |
periodicity => { type => 'varchar', length => 10, not_null => 1 }, |
|
16 |
print => { type => 'boolean', default => 'false' }, |
|
17 |
printer_id => { type => 'integer' }, |
|
18 |
copies => { type => 'integer' }, |
|
19 |
active => { type => 'boolean', default => 'true' }, |
|
20 |
start_date => { type => 'date' }, |
|
21 |
ar_chart_id => { type => 'integer', not_null => 1 }, |
|
22 |
terminated => { type => 'boolean', default => 'false' }, |
|
23 |
end_date => { type => 'date' }, |
|
24 |
extend_automatically_by => { type => 'integer' }, |
|
22 | 25 |
], |
23 | 26 |
|
24 | 27 |
primary_key_columns => [ 'id' ], |
Auch abrufbar als: Unified diff
Felder end_date, terminated, extend_automatically_by ergänzt