Revision 3eb3d1b1
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/CustomVariableValidity.pm | ||
---|---|---|
9 | 9 |
__PACKAGE__->meta->table('custom_variables_validity'); |
10 | 10 |
|
11 | 11 |
__PACKAGE__->meta->columns( |
12 |
id => { type => 'integer', not_null => 1, sequence => 'id' }, |
|
13 | 12 |
config_id => { type => 'integer', not_null => 1 }, |
14 |
trans_id => { type => 'integer', not_null => 1 },
|
|
13 |
id => { type => 'integer', not_null => 1, sequence => 'id' },
|
|
15 | 14 |
itime => { type => 'timestamp', default => 'now()' }, |
15 |
trans_id => { type => 'integer', not_null => 1 }, |
|
16 | 16 |
); |
17 | 17 |
|
18 | 18 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
... | ... | |
26 | 26 |
}, |
27 | 27 |
); |
28 | 28 |
|
29 |
# __PACKAGE__->meta->initialize; |
|
30 |
|
|
31 | 29 |
1; |
32 | 30 |
; |
Auch abrufbar als: Unified diff
MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren