Revision b8b112a3
Von Sven Schöling vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Assembly.pm | ||
---|---|---|
6 | 6 |
|
7 | 7 |
use base qw(SL::DB::Object); |
8 | 8 |
|
9 |
__PACKAGE__->meta->setup( |
|
10 |
table => 'assembly', |
|
11 |
|
|
12 |
columns => [ |
|
13 |
id => { type => 'integer' }, |
|
14 |
parts_id => { type => 'integer' }, |
|
15 |
qty => { type => 'float', precision => 4 }, |
|
16 |
bom => { type => 'boolean' }, |
|
17 |
itime => { type => 'timestamp', default => 'now()' }, |
|
18 |
mtime => { type => 'timestamp' }, |
|
19 |
assembly_id => { type => 'serial', not_null => 1 }, |
|
20 |
], |
|
21 |
|
|
22 |
primary_key_columns => [ 'assembly_id' ], |
|
23 |
|
|
24 |
allow_inline_column_values => 1, |
|
9 |
__PACKAGE__->meta->table('assembly'); |
|
10 |
|
|
11 |
__PACKAGE__->meta->columns( |
|
12 |
id => { type => 'integer' }, |
|
13 |
parts_id => { type => 'integer' }, |
|
14 |
qty => { type => 'float', precision => 4 }, |
|
15 |
bom => { type => 'boolean' }, |
|
16 |
itime => { type => 'timestamp', default => 'now()' }, |
|
17 |
mtime => { type => 'timestamp' }, |
|
18 |
assembly_id => { type => 'serial', not_null => 1 }, |
|
25 | 19 |
); |
26 | 20 |
|
21 |
__PACKAGE__->meta->primary_key_columns([ 'assembly_id' ]); |
|
22 |
|
|
23 |
__PACKAGE__->meta->allow_inline_column_values(1); |
|
24 |
|
|
25 |
# __PACKAGE__->meta->initialize; |
|
26 |
|
|
27 | 27 |
1; |
28 | 28 |
; |
Auch abrufbar als: Unified diff
MetaSetup neu generiert