Revision f5ced930
Von Moritz Bunkus vor mehr als 5 Jahren hinzugefügt
SL/DB/MetaSetup/BankTransactionAccTrans.pm | ||
---|---|---|
19 | 19 |
mtime => { type => 'timestamp' }, |
20 | 20 |
); |
21 | 21 |
|
22 |
__PACKAGE__->meta->primary_key_columns([ 'id' ]); |
|
22 |
__PACKAGE__->meta->primary_key_columns([ 'bank_transaction_id', 'acc_trans_id' ]);
|
|
23 | 23 |
|
24 | 24 |
__PACKAGE__->meta->allow_inline_column_values(1); |
25 | 25 |
|
SL/DB/MetaSetup/Contact.pm | ||
---|---|---|
18 | 18 |
cp_gender => { type => 'character', length => 1 }, |
19 | 19 |
cp_givenname => { type => 'text' }, |
20 | 20 |
cp_id => { type => 'integer', not_null => 1, sequence => 'id' }, |
21 |
cp_main => { type => 'boolean' }, |
|
21 |
cp_main => { type => 'boolean', default => 'false' },
|
|
22 | 22 |
cp_mobile1 => { type => 'text' }, |
23 | 23 |
cp_mobile2 => { type => 'text' }, |
24 | 24 |
cp_name => { type => 'text' }, |
Auch abrufbar als: Unified diff
Rose-Models anhand des tatsächlichen Schemas aktualisiert