Revision 3eb3d1b1
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/Price.pm | ||
---|---|---|
9 | 9 |
__PACKAGE__->meta->table('prices'); |
10 | 10 |
|
11 | 11 |
__PACKAGE__->meta->columns( |
12 |
id => { type => 'serial', not_null => 1 }, |
|
12 | 13 |
parts_id => { type => 'integer' }, |
13 |
pricegroup_id => { type => 'integer' }, |
|
14 | 14 |
price => { type => 'numeric', precision => 5, scale => 15 }, |
15 |
id => { type => 'serial', not_null => 1 },
|
|
15 |
pricegroup_id => { type => 'integer' },
|
|
16 | 16 |
); |
17 | 17 |
|
18 | 18 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
... | ... | |
29 | 29 |
}, |
30 | 30 |
); |
31 | 31 |
|
32 |
# __PACKAGE__->meta->initialize; |
|
33 |
|
|
34 | 32 |
1; |
35 | 33 |
; |
Auch abrufbar als: Unified diff
MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren